@mikey-pro/eslint-config 8.0.12 → 8.0.14
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/rules.js +1 -2
package/package.json
CHANGED
package/rules.js
CHANGED
|
@@ -171,7 +171,7 @@ export const baseRules = {
|
|
|
171
171
|
ignore: [/e2e/]
|
|
172
172
|
}
|
|
173
173
|
],
|
|
174
|
-
'unicorn/import-index':
|
|
174
|
+
'unicorn/import-index': 'warn',
|
|
175
175
|
'prettier/prettier': ['warn', { parser: 'babel' }],
|
|
176
176
|
|
|
177
177
|
// Error handling
|
|
@@ -187,7 +187,6 @@ export const baseRules = {
|
|
|
187
187
|
// Import rules
|
|
188
188
|
'import/consistent-type-specifier-style': ['error', 'prefer-top-level'],
|
|
189
189
|
'import/no-empty-named-blocks': 'error',
|
|
190
|
-
'import/no-reserved-dependencies': 'error',
|
|
191
190
|
|
|
192
191
|
// Better promises
|
|
193
192
|
'promise/no-multiple-resolved': 'error',
|