diff --git a/eslint.config.mjs b/eslint.config.mjs index ea256bf8e7..fcd966dd1c 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -111,9 +111,7 @@ export default defineConfig( ], curly: ['warn', 'multi-line', 'consistent'], - 'dot-location': ['warn', 'property'], eqeqeq: ['warn', 'smart'], - 'new-parens': 'warn', 'no-array-constructor': 'warn', 'no-caller': 'warn', 'no-cond-assign': ['warn', 'except-parens'], @@ -148,20 +146,6 @@ export default defineConfig( 'no-lone-blocks': 'warn', - 'no-mixed-operators': [ - 'warn', - { - groups: [ - ['&', '|', '^', '~', '<<', '>>', '>>>'], - ['==', '!=', '===', '!==', '>', '>=', '<', '<='], - ['&&', '||'], - ['in', 'instanceof'], - ], - - allowSamePrecedence: false, - }, - ], - 'no-multi-str': 'warn', 'no-global-assign': 'warn', 'no-unsafe-negation': 'warn', @@ -219,10 +203,8 @@ export default defineConfig( ], 'no-with': 'warn', - 'no-whitespace-before-property': 'warn', 'require-yield': 'warn', - 'rest-spread-spacing': ['warn', 'never'], strict: ['warn', 'never'], 'unicode-bom': ['warn', 'never'], 'use-isnan': 'warn', diff --git a/upcoming-release-notes/6444.md b/upcoming-release-notes/6444.md new file mode 100644 index 0000000000..9ef8c23a90 --- /dev/null +++ b/upcoming-release-notes/6444.md @@ -0,0 +1,6 @@ +--- +category: Maintenance +authors: [MatissJanis] +--- + +lint: remove deprecated eslint rules