@dmitryrechkin/eslint-standard 1.3.3 → 1.3.5

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
@@ -77,7 +77,8 @@ export default function ({
77
77
 
78
78
  // Original coding guidelines
79
79
  'brace-style': 'off', // Disabled in favor of @stylistic/brace-style
80
- '@stylistic/brace-style': ['error', 'allman', { allowSingleLine: true }],
80
+ '@stylistic/brace-style': ['error', 'allman', { allowSingleLine: false }],
81
+ '@stylistic/block-spacing': ['error', 'never'], // Enforce consistent spacing inside blocks
81
82
  indent: 'off', // Disabled to avoid conflicts with @stylistic/indent and our JSDoc plugin
82
83
  '@stylistic/indent': ['error', 'tab', { SwitchCase: 1 }],
83
84
  quotes: 'off', // Disabled in favor of @stylistic/quotes
@@ -513,10 +514,7 @@ export default function ({
513
514
  'promise/prefer-await-to-callbacks': 'warn',
514
515
 
515
516
  // Import plugin rules
516
- 'import/no-unresolved': ['error', {
517
- ignore: ['\\.ts$', '\\.tsx$'],
518
- caseSensitive: false
519
- }],
517
+ 'import/no-unresolved': 'off', // Too many false positives with TypeScript
520
518
  'import/named': 'error',
521
519
  'import/default': 'error',
522
520
  'import/namespace': '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.3.3",
4
+ "version": "1.3.5",
5
5
  "main": "eslint.config.mjs",
6
6
  "bin": {
7
7
  "eslint-standard": "./src/cli/index.mjs"