@simplysm/eslint-plugin 10.0.36 → 10.0.37

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": "10.0.36",
3
+ "version": "10.0.37",
4
4
  "description": "심플리즘 패키지 - ESLINT 플러그인",
5
5
  "author": "김석래",
6
6
  "repository": {
@@ -21,34 +21,40 @@ module.exports = {
21
21
  // "deprecation/deprecation": ["warn"], // 느림
22
22
 
23
23
  // import
24
- "import/no-extraneous-dependencies": ["error"], // 느림
24
+ // "import/no-extraneous-dependencies": ["error"], // 느림
25
25
 
26
26
  // 심플리즘
27
27
  "@simplysm/ts-no-throw-not-implement-error": ["warn"],
28
28
  "@simplysm/ts-no-self-entry-import": ["error"],
29
29
 
30
30
  // 타입스크립트
31
- // "@typescript-eslint/explicit-member-accessibility": ["error"],
31
+ "@typescript-eslint/explicit-member-accessibility": ["error"],
32
32
  "@typescript-eslint/require-await": ["error"],
33
33
  "@typescript-eslint/await-thenable": ["error"],
34
34
  "@typescript-eslint/return-await": ["error", "always"],
35
35
  "@typescript-eslint/no-floating-promises": ["error"],
36
36
  "@typescript-eslint/semi": ["error"],
37
37
  "@typescript-eslint/no-shadow": ["error"],
38
+ // "@typescript-eslint/member-delimiter-style": ["error"],
39
+ // "@typescript-eslint/no-unnecessary-condition": ["error", { allowConstantLoopConditions: true }],
40
+ // "@typescript-eslint/no-unnecessary-type-assertion": ["error"],
38
41
  "@typescript-eslint/non-nullable-type-assertion-style": ["error"],
39
42
  "@typescript-eslint/prefer-reduce-type-parameter": ["error"],
40
43
  "@typescript-eslint/prefer-return-this-type": ["error"],
41
44
  "@typescript-eslint/no-duplicate-imports": ["error"],
42
45
  "@typescript-eslint/prefer-readonly": ["error"],
43
46
  "@typescript-eslint/typedef": ["error"],
44
- /*"@typescript-eslint/explicit-function-return-type": ["error", {
47
+ "@typescript-eslint/explicit-function-return-type": ["error", {
45
48
  allowExpressions: true,
46
49
  allowTypedFunctionExpressions: true,
47
50
  allowHigherOrderFunctions: true,
48
51
  allowDirectConstAssertionInArrowFunctions: true,
49
52
  allowConciseArrowFunctionExpressionsStartingWithVoid: true,
50
53
  allowFunctionsWithoutTypeParameters: true
51
- }],*/
54
+ }],
55
+ "@typescript-eslint/explicit-module-boundary-types": ["error", {
56
+ allowArgumentsExplicitlyTypedAsAny: true,
57
+ }],
52
58
  "@typescript-eslint/no-unused-expressions": ["error"],
53
59
  "@typescript-eslint/no-unused-vars": ["warn", { args: "none" }],
54
60
  "@typescript-eslint/strict-boolean-expressions": ["error", {
@@ -57,9 +63,6 @@ module.exports = {
57
63
  allowNullableBoolean: true,
58
64
  allowNullableObject: true
59
65
  }],
60
- /*"@typescript-eslint/explicit-module-boundary-types": ["error", {
61
- allowArgumentsExplicitlyTypedAsAny: true,
62
- }],*/
63
66
  "@typescript-eslint/prefer-ts-expect-error": ["error"]
64
67
  }
65
68
  };