@interface-technologies/eslint-config 0.4.6 → 0.4.7
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/README.md +1 -1
- package/index.cjs +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
See https://srmagura.github.io/iti-react/.
|
|
1
|
+
See https://srmagura.github.io/iti-react/.
|
package/index.cjs
CHANGED
|
@@ -3,7 +3,7 @@ module.exports = {
|
|
|
3
3
|
parserOptions: {
|
|
4
4
|
project: './tsconfig.json',
|
|
5
5
|
tsconfigRootDir: '.',
|
|
6
|
-
ecmaVersion:
|
|
6
|
+
ecmaVersion: 2019,
|
|
7
7
|
sourceType: 'module',
|
|
8
8
|
},
|
|
9
9
|
extends: [
|
|
@@ -27,7 +27,6 @@ module.exports = {
|
|
|
27
27
|
'testing-library/custom-renders': 'off',
|
|
28
28
|
},
|
|
29
29
|
rules: {
|
|
30
|
-
'consistent-return': 'off',
|
|
31
30
|
'default-case': 'off',
|
|
32
31
|
'max-classes-per-file': 'off',
|
|
33
32
|
'no-console': ['error', { allow: ['warn', 'error'] }],
|
|
@@ -101,7 +100,9 @@ module.exports = {
|
|
|
101
100
|
devDependencies: [
|
|
102
101
|
'**/*.test.ts?(x)',
|
|
103
102
|
'**/*.stories.ts?(x)',
|
|
103
|
+
'**/__devHelpers__/**/*',
|
|
104
104
|
'**/__DevHelpers__/**/*',
|
|
105
|
+
'**/__testHelpers__/**/*',
|
|
105
106
|
'**/__TestHelpers__/**/*',
|
|
106
107
|
],
|
|
107
108
|
},
|
package/package.json
CHANGED