@hyeon/linter 7.0.43 → 7.0.45
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 +1 -1
- package/src/base.mjs +0 -3
- package/src/hansanghyeon.mjs +3 -0
- package/src/prettier.mjs +1 -1
package/package.json
CHANGED
package/src/base.mjs
CHANGED
package/src/hansanghyeon.mjs
CHANGED
|
@@ -53,6 +53,8 @@ const custom = {
|
|
|
53
53
|
ignoreEOLComments: true,
|
|
54
54
|
},
|
|
55
55
|
],
|
|
56
|
+
// 보일러플레이트 코드를 생성할때 {} 를 사용하는 경우가 많아서 off
|
|
57
|
+
'@typescript-eslint/no-empty-object-type': 'off',
|
|
56
58
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
57
59
|
'@typescript-eslint/no-unused-vars': [
|
|
58
60
|
'error',
|
|
@@ -68,6 +70,7 @@ const custom = {
|
|
|
68
70
|
},
|
|
69
71
|
],
|
|
70
72
|
'react/display-name': 'off',
|
|
73
|
+
'no-confusing-arrow': 'off'
|
|
71
74
|
},
|
|
72
75
|
ignores: [".config/*", "eslint.config.mjs", "eslint.config.js"]
|
|
73
76
|
}
|