@simplysm/eslint-plugin 10.0.31 → 10.0.33

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.31",
3
+ "version": "10.0.33",
4
4
  "description": "심플리즘 패키지 - ESLINT 플러그인",
5
5
  "author": "김석래",
6
6
  "repository": {
@@ -12,7 +12,6 @@ module.exports = {
12
12
  "no-warning-comments": ["warn"],
13
13
 
14
14
  "require-await": ["error"],
15
- "quotes": ["error", "double", { avoidEscape: true, allowTemplateLiterals: true }],
16
15
  "semi": ["error"],
17
16
  "no-shadow": ["error"],
18
17
  "no-duplicate-imports": ["error"],
@@ -18,7 +18,7 @@ module.exports = {
18
18
  "linebreak-style": ["error", "unix"],
19
19
 
20
20
  // Deprecation
21
- "deprecation/deprecation": ["warn"], // 느림
21
+ // "deprecation/deprecation": ["warn"], // 느림
22
22
 
23
23
  // import
24
24
  "import/no-extraneous-dependencies": ["error"], // 느림
@@ -28,15 +28,13 @@ module.exports = {
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
- "@typescript-eslint/quotes": ["error", "double", { avoidEscape: true, allowTemplateLiterals: true }],
34
+ "@typescript-eslint/return-await": ["error", "always"],
35
+ "@typescript-eslint/no-floating-promises": ["error"],
35
36
  "@typescript-eslint/semi": ["error"],
36
37
  "@typescript-eslint/no-shadow": ["error"],
37
- // "@typescript-eslint/member-delimiter-style": ["error"],
38
- // "@typescript-eslint/no-unnecessary-condition": ["error", { allowConstantLoopConditions: true }],
39
- // "@typescript-eslint/no-unnecessary-type-assertion": ["error"],
40
38
  "@typescript-eslint/non-nullable-type-assertion-style": ["error"],
41
39
  "@typescript-eslint/prefer-reduce-type-parameter": ["error"],
42
40
  "@typescript-eslint/prefer-return-this-type": ["error"],
@@ -53,13 +51,12 @@ module.exports = {
53
51
  "@typescript-eslint/no-unused-expressions": ["error"],
54
52
  "@typescript-eslint/no-unused-vars": ["warn", { args: "none" }],
55
53
  "@typescript-eslint/strict-boolean-expressions": ["error", {
54
+ allowString: true,
55
+ allowNumber: true,
56
56
  allowNullableBoolean: true,
57
57
  allowNullableObject: true
58
58
  }],
59
59
  "@typescript-eslint/explicit-module-boundary-types": ["error", { allowArgumentsExplicitlyTypedAsAny: true }],
60
- "@typescript-eslint/return-await": ["error", "always"],
61
- "@typescript-eslint/no-floating-promises": ["error"],
62
- // "@typescript-eslint/comma-dangle": ["error"]
63
60
  "@typescript-eslint/prefer-ts-expect-error": ["error"]
64
61
  }
65
62
  };