@dmitryrechkin/eslint-standard 1.5.0 → 1.5.1
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 +1 -0
- package/package.json +1 -1
package/eslint.config.mjs
CHANGED
|
@@ -587,6 +587,7 @@ export default function ({
|
|
|
587
587
|
'import/no-anonymous-default-export': 'warn',
|
|
588
588
|
'import/group-exports': 'off',
|
|
589
589
|
'import/dynamic-import-chunkname': 'off',
|
|
590
|
+
'import/order': 'off', // Disabled - conflicts with simple-import-sort plugin
|
|
590
591
|
|
|
591
592
|
// JSX A11y plugin rules (only active for React/JSX files)
|
|
592
593
|
'jsx-a11y/alt-text': '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.5.
|
|
4
|
+
"version": "1.5.1",
|
|
5
5
|
"main": "eslint.config.mjs",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./eslint.config.mjs"
|