UNPKG

eslint-config-airbnb-typescript

Version:
211 lines (182 loc) 11.6 kB
const { rules: baseBestPracticesRules } = require('eslint-config-airbnb-base/rules/best-practices'); const { rules: baseErrorsRules } = require('eslint-config-airbnb-base/rules/errors'); const { rules: baseES6Rules } = require('eslint-config-airbnb-base/rules/es6'); const { rules: baseImportsRules } = require('eslint-config-airbnb-base/rules/imports'); const { rules: baseStyleRules } = require('eslint-config-airbnb-base/rules/style'); const { rules: baseVariablesRules } = require('eslint-config-airbnb-base/rules/variables'); module.exports = { plugins: ['@typescript-eslint'], parser: '@typescript-eslint/parser', settings: { // Apply special parsing for TypeScript files 'import/parsers': { '@typescript-eslint/parser': ['.ts', '.tsx', '.d.ts'], }, // Append 'ts' extensions to Airbnb 'import/resolver' setting 'import/resolver': { node: { extensions: ['.mjs', '.js', '.ts', '.json'], }, }, // Append 'ts' extensions to Airbnb 'import/extensions' setting 'import/extensions': ['.js', '.ts', '.mjs'], }, rules: { // Replace Airbnb 'brace-style' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/brace-style.md 'brace-style': 'off', '@typescript-eslint/brace-style': baseStyleRules['brace-style'], // Replace Airbnb 'camelcase' rule with '@typescript-eslint/naming-convention' // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/naming-convention.md camelcase: 'off', // The `@typescript-eslint/naming-convention` rule allows `leadingUnderscore` and `trailingUnderscore` settings. However, the existing `no-underscore-dangle` rule already takes care of this. '@typescript-eslint/naming-convention': [ 'error', // Allow camelCase variables (23.2), PascalCase variables (23.8), and UPPER_CASE variables (23.10) { selector: 'variable', format: ['camelCase', 'PascalCase', 'UPPER_CASE'], }, // Allow camelCase functions (23.2), and PascalCase functions (23.8) { selector: 'function', format: ['camelCase', 'PascalCase'], }, // Airbnb recommends PascalCase for classes (23.3), and although Airbnb does not make TypeScript recommendations, we are assuming this rule would similarly apply to anything "type like", including interfaces, type aliases, and enums { selector: 'typeLike', format: ['PascalCase'], }, ], // Replace Airbnb 'comma-spacing' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/comma-spacing.md 'comma-spacing': 'off', '@typescript-eslint/comma-spacing': baseStyleRules['comma-spacing'], // Replace Airbnb 'dot-notation' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/dot-notation.md 'dot-notation': 'off', '@typescript-eslint/dot-notation': baseBestPracticesRules['dot-notation'], // Replace Airbnb 'func-call-spacing' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/func-call-spacing.md 'func-call-spacing': 'off', '@typescript-eslint/func-call-spacing': baseStyleRules['func-call-spacing'], // Replace Airbnb 'indent' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/indent.md indent: 'off', '@typescript-eslint/indent': baseStyleRules.indent, // Replace Airbnb 'keyword-spacing' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/keyword-spacing.md 'keyword-spacing': 'off', '@typescript-eslint/keyword-spacing': baseStyleRules['keyword-spacing'], // Replace Airbnb 'lines-between-class-members' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/lines-between-class-members.md 'lines-between-class-members': 'off', '@typescript-eslint/lines-between-class-members': baseStyleRules['lines-between-class-members'], // Replace Airbnb 'no-array-constructor' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-array-constructor.md 'no-array-constructor': 'off', '@typescript-eslint/no-array-constructor': baseStyleRules['no-array-constructor'], // Replace Airbnb 'no-dupe-class-members' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-dupe-class-members.md 'no-dupe-class-members': 'off', '@typescript-eslint/no-dupe-class-members': baseES6Rules['no-dupe-class-members'], // Replace Airbnb 'no-empty-function' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-empty-function.md 'no-empty-function': 'off', '@typescript-eslint/no-empty-function': baseBestPracticesRules['no-empty-function'], // Replace Airbnb 'no-extra-parens' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-extra-parens.md 'no-extra-parens': 'off', '@typescript-eslint/no-extra-parens': baseErrorsRules['no-extra-parens'], // Replace Airbnb 'no-extra-semi' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-extra-semi.md 'no-extra-semi': 'off', '@typescript-eslint/no-extra-semi': baseErrorsRules['no-extra-semi'], // Replace Airbnb 'no-implied-eval' and 'no-new-func' rules with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-implied-eval.md 'no-implied-eval': 'off', 'no-new-func': 'off', '@typescript-eslint/no-implied-eval': baseBestPracticesRules['no-implied-eval'], // Replace Airbnb 'no-loop-func' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-loop-func.md 'no-loop-func': 'off', '@typescript-eslint/no-loop-func': baseBestPracticesRules['no-loop-func'], // Replace Airbnb 'no-magic-numbers' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-magic-numbers.md 'no-magic-numbers': 'off', '@typescript-eslint/no-magic-numbers': baseBestPracticesRules['no-magic-numbers'], // Replace Airbnb 'no-redeclare' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-redeclare.md 'no-redeclare': 'off', '@typescript-eslint/no-redeclare': baseBestPracticesRules['no-redeclare'], // Replace Airbnb 'no-shadow' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-shadow.md 'no-shadow': 'off', '@typescript-eslint/no-shadow': baseVariablesRules['no-shadow'], // Replace Airbnb 'no-throw-literal' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-throw-literal.md 'no-throw-literal': 'off', '@typescript-eslint/no-throw-literal': baseBestPracticesRules['no-throw-literal'], // Replace Airbnb 'no-unused-expressions' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-unused-expressions.md 'no-unused-expressions': 'off', '@typescript-eslint/no-unused-expressions': baseBestPracticesRules['no-unused-expressions'], // Replace Airbnb 'no-unused-vars' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-unused-vars.md 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': baseVariablesRules['no-unused-vars'], // Replace Airbnb 'no-use-before-define' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-use-before-define.md 'no-use-before-define': 'off', '@typescript-eslint/no-use-before-define': baseVariablesRules['no-use-before-define'], // Replace Airbnb 'no-useless-constructor' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-useless-constructor.md 'no-useless-constructor': 'off', '@typescript-eslint/no-useless-constructor': baseES6Rules['no-useless-constructor'], // Replace Airbnb 'quotes' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/quotes.md quotes: 'off', '@typescript-eslint/quotes': baseStyleRules.quotes, // Replace Airbnb 'semi' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/semi.md semi: 'off', '@typescript-eslint/semi': baseStyleRules.semi, // Replace Airbnb 'space-before-function-paren' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/space-before-function-paren.md 'space-before-function-paren': 'off', '@typescript-eslint/space-before-function-paren': baseStyleRules['space-before-function-paren'], // Append 'ts' and 'tsx' to Airbnb 'import/extensions' rule // https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/extensions.md 'import/extensions': [ baseImportsRules['import/extensions'][0], baseImportsRules['import/extensions'][1], { ...baseImportsRules['import/extensions'][2], ts: 'never', tsx: 'never', }, ], // Append 'ts' and 'tsx' extensions to Airbnb 'import/no-extraneous-dependencies' rule // https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-extraneous-dependencies.md 'import/no-extraneous-dependencies': [ baseImportsRules['import/no-extraneous-dependencies'][0], { ...baseImportsRules['import/no-extraneous-dependencies'][1], devDependencies: baseImportsRules[ 'import/no-extraneous-dependencies' ][1].devDependencies.map((glob) => glob.replace('js,jsx', 'js,jsx,ts,tsx')), }, ], }, overrides: [ { files: ['*.ts', '*.tsx'], rules: { /* Using TypeScript makes it safe enough to disable the checks below */ // Disable ESLint-based module resolution check for improved monorepo support // https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-unresolved.md 'import/no-unresolved': 'off', }, }, ], };