@mikey-pro/eslint-config-react 9.0.1 → 9.0.3
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/index.js +4 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Modern React ESLint configuration for Mikey Pro
|
|
2
|
-
import { baseConfig } from '
|
|
3
|
-
import { baseOverrides } from '
|
|
2
|
+
import { baseConfig } from '../eslint-config/base-config.js';
|
|
3
|
+
import { baseOverrides } from '../eslint-config/overrides.js';
|
|
4
4
|
import jsxA11y from 'eslint-plugin-jsx-a11y';
|
|
5
5
|
import react from 'eslint-plugin-react';
|
|
6
6
|
import reactHooks from 'eslint-plugin-react-hooks';
|
|
@@ -281,5 +281,5 @@ export default [
|
|
|
281
281
|
];
|
|
282
282
|
|
|
283
283
|
// Export individual components for advanced usage
|
|
284
|
-
export { baseConfig } from '
|
|
285
|
-
export { baseOverrides } from '
|
|
284
|
+
export { baseConfig } from '../eslint-config/base-config.js';
|
|
285
|
+
export { baseOverrides } from '../eslint-config/overrides.js';
|