@simplysm/eslint-plugin 11.0.6 → 11.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/eslint-plugin",
3
- "version": "11.0.6",
3
+ "version": "11.0.8",
4
4
  "description": "심플리즘 패키지 - ESLINT 플러그인",
5
5
  "author": "김석래",
6
6
  "repository": {
@@ -18,9 +18,9 @@
18
18
  "@angular-eslint/eslint-plugin": "^16.2.0",
19
19
  "@angular-eslint/eslint-plugin-template": "^16.2.0",
20
20
  "@angular-eslint/template-parser": "^16.2.0",
21
- "@typescript-eslint/eslint-plugin": "^6.7.5",
21
+ "@typescript-eslint/eslint-plugin": "^6.8.0",
22
22
  "@typescript-eslint/experimental-utils": "^5.62.0",
23
- "@typescript-eslint/parser": "^6.7.5",
23
+ "@typescript-eslint/parser": "^6.8.0",
24
24
  "eslint": "^8.51.0",
25
25
  "eslint-import-resolver-typescript": "^3.6.1",
26
26
  "eslint-module-utils": "^2.8.0",
@@ -89,17 +89,20 @@ module.exports = {
89
89
  "@typescript-eslint/prefer-return-this-type": ["error"],
90
90
  // "@typescript-eslint/prefer-readonly": ["error"],
91
91
  "@typescript-eslint/typedef": ["error"],
92
- /*"@typescript-eslint/explicit-function-return-type": ["error", {
93
- allowExpressions: true,
94
- allowTypedFunctionExpressions: true,
95
- allowHigherOrderFunctions: true,
96
- allowDirectConstAssertionInArrowFunctions: true,
97
- allowConciseArrowFunctionExpressionsStartingWithVoid: true,
98
- allowFunctionsWithoutTypeParameters: true
99
- }],*/
100
- /*"@typescript-eslint/explicit-module-boundary-types": ["error", {
101
- allowArgumentsExplicitlyTypedAsAny: true,
102
- }],*/
92
+ // "@typescript-eslint/explicit-function-return-type": ["error", {
93
+ // allowExpressions: true,
94
+ // allowTypedFunctionExpressions: true,
95
+ // allowHigherOrderFunctions: true,
96
+ // allowDirectConstAssertionInArrowFunctions: true,
97
+ // allowConciseArrowFunctionExpressionsStartingWithVoid: true,
98
+ // allowFunctionsWithoutTypeParameters: true
99
+ // }],
100
+ // "@typescript-eslint/explicit-module-boundary-types": ["error", {
101
+ // allowArgumentsExplicitlyTypedAsAny: true,
102
+ // allowTypedFunctionExpressions: true,
103
+ // allowHigherOrderFunctions: true,
104
+ // allowDirectConstAssertionInArrowFunctions: true
105
+ // }],
103
106
  "@typescript-eslint/no-unused-expressions": ["error"],
104
107
  "@typescript-eslint/no-unused-vars": ["error", {args: "none"}],
105
108
  "@typescript-eslint/strict-boolean-expressions": ["error", {
@@ -124,7 +127,8 @@ module.exports = {
124
127
  "@simplysm"
125
128
  ],
126
129
  rules: {
127
- "@simplysm/ng-template-no-todo-comments": "warn"
130
+ "@simplysm/ng-template-no-todo-comments": "warn",
131
+ "@angular-eslint/template/use-track-by-function": "error"
128
132
  }
129
133
  }
130
134
  ]