@dmitryrechkin/eslint-standard 1.4.3 → 1.4.4

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.config.mjs CHANGED
@@ -551,10 +551,7 @@ export default function ({
551
551
  devDependencies: ['**/*.test.{js,jsx,ts,tsx}', '**/*.spec.{js,jsx,ts,tsx}', '**/test/**', '**/tests/**', '**/__tests__/**']
552
552
  }],
553
553
  'import/no-mutable-exports': 'error',
554
- 'import/no-unused-modules': ['error', {
555
- missingExports: true, // Find files with no exports
556
- unusedExports: true // Find unused exports
557
- }],
554
+ // 'import/no-unused-modules': 'off', // Disabled - incompatible with flat config, requires legacy .eslintrc
558
555
  'import/unambiguous': 'off',
559
556
  'import/no-commonjs': 'off',
560
557
  'import/no-amd': 'error',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dmitryrechkin/eslint-standard",
3
3
  "description": "This package provides a shared ESLint configuration which includes TypeScript support and a set of specific linting rules designed to ensure high-quality and consistent code style across projects.",
4
- "version": "1.4.3",
4
+ "version": "1.4.4",
5
5
  "main": "eslint.config.mjs",
6
6
  "exports": {
7
7
  ".": "./eslint.config.mjs"