From 78872da15e74da6108144bead3edc2669cf35de6 Mon Sep 17 00:00:00 2001 From: danstarns Date: Fri, 16 Aug 2024 19:15:46 -0700 Subject: [PATCH] remove repeated config --- .eslintrc.js | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index fb4d5a7e4..4c94328b5 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -48,28 +48,9 @@ module.exports = { '@typescript-eslint/no-unsafe-function-type': 'off', '@typescript-eslint/no-non-null-asserted-optional-chain': 'off', '@typescript-eslint/no-wrapper-object-types': 'off', - indent: ['error', 2], - quotes: ['error', 'single'], 'linebreak-style': ['error', 'unix'], 'max-len': ['error', { code: 300 }], 'no-multiple-empty-lines': ['error', { max: 1, maxEOF: 1 }], }, - overrides: [ - { - files: ['*.ts'], - parser: '@typescript-eslint/parser', - rules: { - indent: ['error', 2], - quotes: ['error', 'single'], - }, - }, - { - files: ['*.js'], - rules: { - indent: ['error', 2], - quotes: ['error', 'single'], - }, - }, - ], ignorePatterns: ['docs/api/*', 'dist/*'], };