@itcase/lint 1.0.9 → 1.0.10
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/eslint/index.js +2 -0
- package/package.json +1 -1
package/eslint/index.js
CHANGED
|
@@ -35,6 +35,8 @@ const eslintConfig = [
|
|
|
35
35
|
// @typescript-eslint
|
|
36
36
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
37
37
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
38
|
+
// Sometimes you need an empty one, for example when extends
|
|
39
|
+
'@typescript-eslint/no-empty-object-type': 'off',
|
|
38
40
|
|
|
39
41
|
// react
|
|
40
42
|
// TODO: make rule "react/prop-types" as error only for JS(x) files
|