-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: migrate tslint to eslint (#1590)
- Loading branch information
1 parent
720c854
commit 526265d
Showing
57 changed files
with
654 additions
and
457 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,7 @@ dist/ | |
node_modules/ | ||
e2e/__cases__/ | ||
e2e/__workdir_synlink__/ | ||
e2e/__external-repos__/ | ||
coverage/ | ||
docs/ | ||
*.config.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,239 @@ | ||
module.exports = { | ||
env: { | ||
node: true, | ||
es6: true, | ||
'jest/globals': true, | ||
}, | ||
extends: 'eslint:recommended', | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:@typescript-eslint/recommended-requiring-type-checking', | ||
'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier | ||
'plugin:jest/recommended', | ||
'plugin:prettier/recommended' | ||
], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
project: 'tsconfig.json', | ||
ecmaVersion: 2020, | ||
sourceType: 'module', | ||
impliedStrict: true, | ||
ecmaFeatures: { | ||
jsx: true, | ||
}, | ||
}, | ||
plugins: ['@typescript-eslint', 'jest', 'jsdoc'], | ||
rules: { | ||
'no-console': ['error', { allow: ['warn', 'error', 'log'] }], | ||
indent: ['error', 2], | ||
'linebreak-style': ['error', 'unix'], | ||
quotes: ['error', 'single'], | ||
semi: ['error', 'never'], | ||
'comma-dangle': [ | ||
'prettier/prettier': 'error', | ||
'no-unused-vars': 'off', // let typescript-eslint handle this | ||
'no-console': 'error', | ||
'linebreak-style': 'off', | ||
'comma-dangle': 'off', | ||
'constructor-super': 'error', | ||
'for-direction': ['error'], | ||
'getter-return': 'warn', | ||
'no-async-promise-executor': ['error'], | ||
'no-case-declarations': ['error'], | ||
'no-class-assign': ['error'], | ||
'no-compare-neg-zero': ['error'], | ||
'no-cond-assign': 'error', | ||
'no-const-assign': ['error'], | ||
'no-constant-condition': ['warn'], | ||
'no-control-regex': ['warn'], | ||
'no-debugger': 'error', | ||
'no-delete-var': ['error'], | ||
'no-dupe-args': ['error'], | ||
'no-dupe-class-members': 'warn', | ||
'no-dupe-keys': ['error'], | ||
'no-duplicate-case': ['error'], | ||
'no-empty': [ | ||
'error', | ||
{ | ||
arrays: 'always-multiline', | ||
objects: 'always-multiline', | ||
imports: 'always-multiline', | ||
exports: 'always-multiline', | ||
functions: 'never', | ||
allowEmptyCatch: true, | ||
}, | ||
], | ||
'no-empty-character-class': ['error'], | ||
'no-empty-pattern': ['error'], | ||
'no-ex-assign': ['error'], | ||
'no-extra-boolean-cast': ['error'], | ||
'no-extra-semi': 'off', | ||
'no-fallthrough': 'off', | ||
'no-func-assign': ['error'], | ||
'no-global-assign': ['error'], | ||
'no-inner-declarations': ['error'], | ||
'no-invalid-regexp': ['error'], | ||
'no-irregular-whitespace': 'off', | ||
'no-misleading-character-class': ['error'], | ||
'no-mixed-spaces-and-tabs': ['error'], | ||
'no-new-symbol': ['error'], | ||
'no-obj-calls': ['error'], | ||
'no-octal': ['error'], | ||
'no-prototype-builtins': ['error'], | ||
'no-redeclare': 'warn', | ||
'no-regex-spaces': ['error'], | ||
'no-self-assign': ['error'], | ||
'no-shadow-restricted-names': ['error'], | ||
'no-sparse-arrays': ['error'], | ||
'no-this-before-super': ['error'], | ||
'no-undef': ['error'], | ||
'no-unexpected-multiline': ['error'], | ||
'no-unreachable': ['error'], | ||
'no-unsafe-finally': 'error', | ||
'no-unsafe-negation': ['error'], | ||
'no-unused-labels': 'error', | ||
'no-useless-catch': ['error'], | ||
'no-useless-escape': 'warn', | ||
'no-with': ['error'], | ||
'require-yield': ['error'], | ||
'use-isnan': 'error', | ||
'valid-typeof': 'off', | ||
'@typescript-eslint/no-unused-vars': ["error", { "argsIgnorePattern": "^_" }], | ||
'@typescript-eslint/adjacent-overload-signatures': 'error', | ||
'@typescript-eslint/array-type': [ | ||
'warn', | ||
{ | ||
default: 'array', | ||
}, | ||
], | ||
'@typescript-eslint/ban-types': [ | ||
'error', | ||
{ | ||
types: { | ||
Object: { | ||
message: 'Avoid using the `Object` type. Did you mean `object`?', | ||
}, | ||
Function: { | ||
message: 'Avoid using the `Function` type. Prefer a specific function type, like `() => void`.', | ||
}, | ||
Boolean: { | ||
message: 'Avoid using the `Boolean` type. Did you mean `boolean`?', | ||
}, | ||
Number: { | ||
message: 'Avoid using the `Number` type. Did you mean `number`?', | ||
}, | ||
String: { | ||
message: 'Avoid using the `String` type. Did you mean `string`?', | ||
}, | ||
Symbol: { | ||
message: 'Avoid using the `Symbol` type. Did you mean `symbol`?', | ||
}, | ||
}, | ||
}, | ||
], | ||
'@typescript-eslint/class-name-casing': 'error', | ||
'@typescript-eslint/prefer-regexp-exec': 'warn', | ||
'@typescript-eslint/prefer-string-starts-ends-with': 'warn', | ||
'@typescript-eslint/unbound-method': 'off', | ||
'@typescript-eslint/prefer-includes': 'warn', | ||
'@typescript-eslint/consistent-type-assertions': 'error', | ||
'@typescript-eslint/consistent-type-definitions': 'error', | ||
'@typescript-eslint/explicit-member-accessibility': [ | ||
'error', | ||
{ | ||
accessibility: 'no-public', | ||
}, | ||
], | ||
'@typescript-eslint/interface-name-prefix': 'off', | ||
'@typescript-eslint/member-delimiter-style': [ | ||
'error', | ||
{ | ||
multiline: { | ||
delimiter: 'none', | ||
requireLast: true, | ||
}, | ||
singleline: { | ||
delimiter: 'semi', | ||
requireLast: false, | ||
}, | ||
}, | ||
], | ||
'@typescript-eslint/require-await': 'off', | ||
'@typescript-eslint/ban-ts-ignore': 'off', | ||
'@typescript-eslint/no-empty-function': ['error', { 'allow': ['arrowFunctions']}], | ||
'@typescript-eslint/no-empty-interface': 'off', | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-for-in-array': 'error', | ||
'@typescript-eslint/no-inferrable-types': 'error', | ||
'@typescript-eslint/no-misused-new': 'error', | ||
'@typescript-eslint/no-namespace': 'warn', | ||
'@typescript-eslint/no-non-null-assertion': 'off', | ||
'@typescript-eslint/no-parameter-properties': 'off', | ||
'@typescript-eslint/no-unnecessary-boolean-literal-compare': 'error', | ||
'@typescript-eslint/no-use-before-define': 'off', | ||
'@typescript-eslint/no-var-requires': 'off', | ||
'@typescript-eslint/prefer-for-of': 'off', | ||
'@typescript-eslint/prefer-function-type': 'error', | ||
'@typescript-eslint/prefer-namespace-keyword': 'error', | ||
'@typescript-eslint/prefer-readonly': 'error', | ||
'@typescript-eslint/triple-slash-reference': [ | ||
'error', | ||
{ | ||
path: 'always', | ||
types: 'prefer-import', | ||
lib: 'always', | ||
}, | ||
], | ||
'@typescript-eslint/type-annotation-spacing': 'off', | ||
'@typescript-eslint/unified-signatures': 'error', | ||
'@typescript-eslint/no-unnecessary-type-assertion': 'warn', | ||
'arrow-body-style': 'warn', | ||
'arrow-parens': ['off', 'always'], | ||
'brace-style': ['off', 'off'], | ||
camelcase: 'warn', | ||
'class-methods-use-this': 'warn', | ||
complexity: 'off', | ||
curly: ['warn', 'multi-line'], | ||
'default-case': 'error', | ||
'dot-notation': 'error', | ||
'eol-last': 'off', | ||
eqeqeq: ['error', 'smart'], | ||
'guard-for-in': 'error', | ||
'id-match': 'error', | ||
'jsdoc/check-alignment': 'error', | ||
'jsdoc/check-indentation': 'error', | ||
'jsdoc/newline-after-description': 'warn', | ||
'max-classes-per-file': 'off', | ||
'max-len': 'off', | ||
'new-parens': 'off', | ||
'newline-per-chained-call': 'off', | ||
'no-bitwise': 'off', | ||
'no-caller': 'error', | ||
'no-duplicate-imports': 'error', | ||
'no-eval': 'error', | ||
'no-invalid-this': 'off', | ||
'no-multiple-empty-lines': 'off', | ||
'no-new-wrappers': 'error', | ||
'no-return-await': 'error', | ||
'no-shadow': [ | ||
'off', | ||
{ | ||
hoist: 'all', | ||
}, | ||
], | ||
'no-template-curly-in-string': 'error', | ||
'no-throw-literal': 'error', | ||
'no-trailing-spaces': 'off', | ||
'no-undef-init': 'error', | ||
'no-underscore-dangle': 'off', | ||
'no-unused-expressions': 'error', | ||
'no-var': 'error', | ||
'object-shorthand': 'error', | ||
'one-var': ['error', 'never'], | ||
'prefer-const': 'warn', | ||
'prefer-object-spread': 'error', | ||
'prefer-template': 'error', | ||
'quote-props': 'off', | ||
radix: 'error', | ||
'space-before-function-paren': 'off', | ||
'space-in-parens': ['off', 'never'], | ||
'spaced-comment': [ | ||
'warn', | ||
'always', | ||
{ | ||
markers: ['/'], | ||
}, | ||
], | ||
}, | ||
settings: {}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
e2e/__external-repos__/yarn-workspace-composite/packages/my-app/main.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.