@simplysm/eslint-plugin 11.0.4 → 11.0.5

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.4",
3
+ "version": "11.0.5",
4
4
  "description": "심플리즘 패키지 - ESLINT 플러그인",
5
5
  "author": "김석래",
6
6
  "repository": {
@@ -18,10 +18,10 @@
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.4",
21
+ "@typescript-eslint/eslint-plugin": "^6.7.5",
22
22
  "@typescript-eslint/experimental-utils": "^5.62.0",
23
- "@typescript-eslint/parser": "^6.7.4",
24
- "eslint": "^8.50.0",
23
+ "@typescript-eslint/parser": "^6.7.5",
24
+ "eslint": "^8.51.0",
25
25
  "eslint-import-resolver-typescript": "^3.6.1",
26
26
  "eslint-module-utils": "^2.8.0",
27
27
  "eslint-plugin-import": "^2.28.1",
@@ -74,7 +74,7 @@ module.exports = {
74
74
  // "import/no-duplicates": ["error"], // 느림
75
75
 
76
76
  // 타입스크립트
77
- "@typescript-eslint/explicit-member-accessibility": ["error"],
77
+ // "@typescript-eslint/explicit-member-accessibility": ["error"],
78
78
  "@typescript-eslint/require-await": ["error"],
79
79
  "@typescript-eslint/await-thenable": ["error"],
80
80
  "@typescript-eslint/return-await": ["error", "always"],
@@ -87,19 +87,19 @@ module.exports = {
87
87
  "@typescript-eslint/non-nullable-type-assertion-style": ["error"],
88
88
  "@typescript-eslint/prefer-reduce-type-parameter": ["error"],
89
89
  "@typescript-eslint/prefer-return-this-type": ["error"],
90
- "@typescript-eslint/prefer-readonly": ["error"],
90
+ // "@typescript-eslint/prefer-readonly": ["error"],
91
91
  "@typescript-eslint/typedef": ["error"],
92
- "@typescript-eslint/explicit-function-return-type": ["error", {
92
+ /*"@typescript-eslint/explicit-function-return-type": ["error", {
93
93
  allowExpressions: true,
94
94
  allowTypedFunctionExpressions: true,
95
95
  allowHigherOrderFunctions: true,
96
96
  allowDirectConstAssertionInArrowFunctions: true,
97
97
  allowConciseArrowFunctionExpressionsStartingWithVoid: true,
98
98
  allowFunctionsWithoutTypeParameters: true
99
- }],
100
- "@typescript-eslint/explicit-module-boundary-types": ["error", {
99
+ }],*/
100
+ /*"@typescript-eslint/explicit-module-boundary-types": ["error", {
101
101
  allowArgumentsExplicitlyTypedAsAny: true,
102
- }],
102
+ }],*/
103
103
  "@typescript-eslint/no-unused-expressions": ["error"],
104
104
  "@typescript-eslint/no-unused-vars": ["error", {args: "none"}],
105
105
  "@typescript-eslint/strict-boolean-expressions": ["error", {