mirror of
https://github.com/elyby/eslint-plugin.git
synced 2024-11-09 15:02:16 +05:30
Split configs over 3 separate configurations and move all eslint plugins dependencies to the peerDependencies
This commit is contained in:
parent
4c33698c28
commit
d9b7bebd2b
12
package.json
12
package.json
@ -25,12 +25,6 @@
|
|||||||
"test": "jest",
|
"test": "jest",
|
||||||
"lint": "eslint \"{src,tests}/**/*.{js,ts}\""
|
"lint": "eslint \"{src,tests}/**/*.{js,ts}\""
|
||||||
},
|
},
|
||||||
"dependencies": {
|
|
||||||
"@typescript-eslint/eslint-plugin": "^1.9.1-alpha.12",
|
|
||||||
"@typescript-eslint/parser": "^1.9.0",
|
|
||||||
"eslint-plugin-react": "^7.13.0",
|
|
||||||
"eslint-plugin-react-hooks": "^1.6.0"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.4.4",
|
"@babel/cli": "^7.4.4",
|
||||||
"@babel/core": "^7.4.5",
|
"@babel/core": "^7.4.5",
|
||||||
@ -45,6 +39,10 @@
|
|||||||
"typescript": "^3.4.5"
|
"typescript": "^3.4.5"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": ">=5.16.0"
|
"@typescript-eslint/eslint-plugin": "^1.9.1-alpha.12",
|
||||||
|
"@typescript-eslint/parser": "^1.9.0",
|
||||||
|
"eslint": ">=5.16.0",
|
||||||
|
"eslint-plugin-react": "^7.13.0",
|
||||||
|
"eslint-plugin-react-hooks": "^1.6.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,35 +1,22 @@
|
|||||||
import { Linter } from 'eslint';
|
import { Linter } from 'eslint';
|
||||||
|
|
||||||
const config: Linter.Config = {
|
const config: Linter.Config = {
|
||||||
parser: '@typescript-eslint/parser',
|
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
sourceType: 'module',
|
sourceType: 'module',
|
||||||
ecmaVersion: 2018,
|
ecmaVersion: 2018,
|
||||||
ecmaFeatures: {
|
|
||||||
jsx: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
settings: {
|
|
||||||
react: {
|
|
||||||
version: 'detect',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
plugins: [
|
|
||||||
'react-hooks',
|
|
||||||
'@typescript-eslint',
|
|
||||||
'@elyby',
|
|
||||||
],
|
|
||||||
|
|
||||||
extends: [
|
extends: [
|
||||||
'eslint:recommended',
|
'eslint:recommended',
|
||||||
'plugin:react/recommended',
|
|
||||||
],
|
],
|
||||||
|
|
||||||
rules: {
|
rules: {
|
||||||
// possible errors (including eslint:recommended)
|
// possible errors (including eslint:recommended)
|
||||||
|
'no-extra-parens': ['warn', 'all', {
|
||||||
|
nestedBinaryExpressions: false,
|
||||||
|
ignoreJSX: 'multi-line',
|
||||||
|
}],
|
||||||
'valid-jsdoc': ['warn', {
|
'valid-jsdoc': ['warn', {
|
||||||
requireParamDescription: false,
|
requireParamDescription: false,
|
||||||
requireReturn: false,
|
requireReturn: false,
|
||||||
@ -62,10 +49,6 @@ const config: Linter.Config = {
|
|||||||
'no-eval': 'error',
|
'no-eval': 'error',
|
||||||
'no-extend-native': 'error',
|
'no-extend-native': 'error',
|
||||||
'no-extra-bind': 'warn',
|
'no-extra-bind': 'warn',
|
||||||
'no-extra-parens': ['warn', 'all', {
|
|
||||||
nestedBinaryExpressions: false,
|
|
||||||
ignoreJSX: 'multi-line',
|
|
||||||
}],
|
|
||||||
'no-fallthrough': 'error',
|
'no-fallthrough': 'error',
|
||||||
'no-floating-decimal': 'warn',
|
'no-floating-decimal': 'warn',
|
||||||
'no-implied-eval': 'error',
|
'no-implied-eval': 'error',
|
||||||
@ -82,6 +65,8 @@ const config: Linter.Config = {
|
|||||||
'no-octal': 'error',
|
'no-octal': 'error',
|
||||||
'no-proto': 'error',
|
'no-proto': 'error',
|
||||||
'no-redeclare': 'warn',
|
'no-redeclare': 'warn',
|
||||||
|
'no-return-assign': 'error',
|
||||||
|
'no-return-await': 'error',
|
||||||
'no-script-url': 'error',
|
'no-script-url': 'error',
|
||||||
'no-self-compare': 'error',
|
'no-self-compare': 'error',
|
||||||
'no-sequences': 'error',
|
'no-sequences': 'error',
|
||||||
@ -120,7 +105,7 @@ const config: Linter.Config = {
|
|||||||
'array-bracket-spacing': 'off', // disable because we want spaces on destructured arrays
|
'array-bracket-spacing': 'off', // disable because we want spaces on destructured arrays
|
||||||
'block-spacing': ['error', 'never'],
|
'block-spacing': ['error', 'never'],
|
||||||
'brace-style': ['error', '1tbs', {
|
'brace-style': ['error', '1tbs', {
|
||||||
allowSingleLine: true,
|
allowSingleLine: false,
|
||||||
}],
|
}],
|
||||||
'comma-spacing': 'error',
|
'comma-spacing': 'error',
|
||||||
'comma-style': 'error',
|
'comma-style': 'error',
|
||||||
@ -137,7 +122,6 @@ const config: Linter.Config = {
|
|||||||
'indent': ['error', 4, {
|
'indent': ['error', 4, {
|
||||||
SwitchCase: 1,
|
SwitchCase: 1,
|
||||||
}],
|
}],
|
||||||
'jsx-quotes': 'error',
|
|
||||||
'key-spacing': ['error', {
|
'key-spacing': ['error', {
|
||||||
mode: 'minimum',
|
mode: 'minimum',
|
||||||
}],
|
}],
|
||||||
@ -191,114 +175,7 @@ const config: Linter.Config = {
|
|||||||
'prefer-spread': 'warn',
|
'prefer-spread': 'warn',
|
||||||
'prefer-template': 'warn',
|
'prefer-template': 'warn',
|
||||||
'require-yield': 'error',
|
'require-yield': 'error',
|
||||||
|
|
||||||
// react
|
|
||||||
'react/display-name': 'warn',
|
|
||||||
'react/forbid-prop-types': 'warn',
|
|
||||||
'react/jsx-boolean-value': 'warn',
|
|
||||||
'react/jsx-closing-bracket-location': 'off',
|
|
||||||
'react/jsx-curly-spacing': 'warn',
|
|
||||||
'react/jsx-fragments': ['error', 'syntax'],
|
|
||||||
'react/jsx-handler-names': ['warn', {
|
|
||||||
eventHandlerPrefix: 'on',
|
|
||||||
eventHandlerPropPrefix: 'on',
|
|
||||||
}],
|
|
||||||
'react/jsx-indent-props': 'warn',
|
|
||||||
'react/jsx-key': 'warn',
|
|
||||||
'react/jsx-one-expression-per-line': ['warn', {
|
|
||||||
allow: 'literal',
|
|
||||||
}],
|
|
||||||
'react/jsx-max-props-per-line': 'off',
|
|
||||||
'react/jsx-no-bind': ['error', {
|
|
||||||
allowArrowFunctions: true,
|
|
||||||
}],
|
|
||||||
'react/jsx-no-duplicate-props': 'warn',
|
|
||||||
'react/jsx-no-literals': 'off',
|
|
||||||
'react/jsx-no-undef': 'warn',
|
|
||||||
'react/jsx-pascal-case': 'warn',
|
|
||||||
'react/jsx-props-no-multi-spaces': 'warn',
|
|
||||||
'react/jsx-uses-react': 'warn',
|
|
||||||
'react/jsx-uses-vars': 'warn',
|
|
||||||
'react/jsx-no-comment-textnodes': 'warn',
|
|
||||||
'react/jsx-tag-spacing': ['warn', {
|
|
||||||
beforeClosing: 'never',
|
|
||||||
}],
|
|
||||||
'react/jsx-wrap-multilines': 'warn',
|
|
||||||
'react/no-deprecated': 'warn',
|
|
||||||
'react/no-did-mount-set-state': 'warn',
|
|
||||||
'react/no-did-update-set-state': 'warn',
|
|
||||||
'react/no-direct-mutation-state': 'error',
|
|
||||||
'react/no-is-mounted': 'warn',
|
|
||||||
'react/no-multi-comp': 'warn',
|
|
||||||
'react/no-string-refs': 'warn',
|
|
||||||
'react/no-this-in-sfc': 'error',
|
|
||||||
'react/no-unknown-property': 'warn',
|
|
||||||
'react/no-will-update-set-state': 'error',
|
|
||||||
'react/prefer-es6-class': 'warn',
|
|
||||||
'react/react-in-jsxscope': 'off',
|
|
||||||
'react/require-render-return': 'warn',
|
|
||||||
'react/self-closing-comp': 'warn',
|
|
||||||
'react/sort-comp': ['warn', {
|
|
||||||
order: ['lifecycle', 'render', 'everything-else'],
|
|
||||||
}],
|
|
||||||
|
|
||||||
// React hooks
|
|
||||||
'react-hooks/rules-of-hooks': 'error',
|
|
||||||
'react-hooks/exhaustive-deps': 'warn',
|
|
||||||
|
|
||||||
// Ely.by's custom rules
|
|
||||||
'@elyby/jsx-closing-bracket-location': 'warn',
|
|
||||||
},
|
},
|
||||||
|
|
||||||
overrides: [
|
|
||||||
{
|
|
||||||
files: ['*.ts', '*.tsx'],
|
|
||||||
rules: {
|
|
||||||
'camelcase': 'off',
|
|
||||||
'func-call-spacing': 'off',
|
|
||||||
'indent': 'off',
|
|
||||||
'no-array-constructor': 'off',
|
|
||||||
'no-extra-parens': 'off',
|
|
||||||
'no-unused-vars': 'off',
|
|
||||||
'valid-jsdoc': 'off',
|
|
||||||
'semi': 'off',
|
|
||||||
|
|
||||||
'react/prop-types': 'off',
|
|
||||||
|
|
||||||
'@typescript-eslint/adjacent-overload-signatures': 'error',
|
|
||||||
'@typescript-eslint/array-type': ['error', 'generic'],
|
|
||||||
'@typescript-eslint/camelcase': 'error',
|
|
||||||
'@typescript-eslint/class-name-casing': 'error',
|
|
||||||
'@typescript-eslint/explicit-member-accessibility': 'error',
|
|
||||||
'@typescript-eslint/func-call-spacing': 'error',
|
|
||||||
'@typescript-eslint/indent': 'error',
|
|
||||||
'@typescript-eslint/interface-name-prefix': ['error', 'never'],
|
|
||||||
'@typescript-eslint/member-delimiter-style': 'error',
|
|
||||||
'@typescript-eslint/no-angle-bracket-type-assertion': 'error',
|
|
||||||
'@typescript-eslint/no-array-constructor': 'error',
|
|
||||||
'@typescript-eslint/no-empty-interface': 'error',
|
|
||||||
'@typescript-eslint/no-extra-parens': ['warn', 'all', {
|
|
||||||
nestedBinaryExpressions: false,
|
|
||||||
ignoreJSX: 'multi-line',
|
|
||||||
}],
|
|
||||||
'@typescript-eslint/no-inferrable-types': 'error',
|
|
||||||
'@typescript-eslint/no-misused-new': 'error',
|
|
||||||
'@typescript-eslint/no-namespace': 'error',
|
|
||||||
'@typescript-eslint/no-object-literal-type-assertion': 'error',
|
|
||||||
'@typescript-eslint/no-parameter-properties': 'error',
|
|
||||||
'@typescript-eslint/no-triple-slash-reference': 'error',
|
|
||||||
'@typescript-eslint/no-unused-vars': 'error',
|
|
||||||
'@typescript-eslint/no-use-before-define': 'error',
|
|
||||||
'@typescript-eslint/no-useless-constructor': 'warn',
|
|
||||||
'@typescript-eslint/no-var-requires': 'error',
|
|
||||||
'@typescript-eslint/prefer-for-of': 'warn',
|
|
||||||
'@typescript-eslint/prefer-interface': 'error',
|
|
||||||
'@typescript-eslint/prefer-namespace-keyword': 'error',
|
|
||||||
'@typescript-eslint/semi': 'error',
|
|
||||||
'@typescript-eslint/type-annotation-spacing': 'error',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default config;
|
export default config;
|
89
src/configs/react.ts
Normal file
89
src/configs/react.ts
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
import { Linter } from 'eslint';
|
||||||
|
|
||||||
|
const config: Linter.Config = {
|
||||||
|
parserOptions: {
|
||||||
|
ecmaFeatures: {
|
||||||
|
jsx: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
settings: {
|
||||||
|
react: {
|
||||||
|
version: 'detect',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
plugins: [
|
||||||
|
'react-hooks',
|
||||||
|
'@elyby',
|
||||||
|
],
|
||||||
|
|
||||||
|
extends: [
|
||||||
|
'plugin:react/recommended',
|
||||||
|
],
|
||||||
|
|
||||||
|
rules: {
|
||||||
|
// stylistic
|
||||||
|
'jsx-quotes': 'error',
|
||||||
|
|
||||||
|
// react
|
||||||
|
'react/display-name': 'warn',
|
||||||
|
'react/forbid-prop-types': 'warn',
|
||||||
|
'react/jsx-boolean-value': 'warn',
|
||||||
|
'react/jsx-closing-bracket-location': 'off',
|
||||||
|
'react/jsx-curly-spacing': 'warn',
|
||||||
|
'react/jsx-fragments': ['error', 'syntax'],
|
||||||
|
'react/jsx-handler-names': ['warn', {
|
||||||
|
eventHandlerPrefix: 'on',
|
||||||
|
eventHandlerPropPrefix: 'on',
|
||||||
|
}],
|
||||||
|
'react/jsx-indent-props': 'warn',
|
||||||
|
'react/jsx-key': 'warn',
|
||||||
|
'react/jsx-one-expression-per-line': ['warn', {
|
||||||
|
allow: 'literal',
|
||||||
|
}],
|
||||||
|
'react/jsx-max-props-per-line': 'off',
|
||||||
|
'react/jsx-no-bind': ['error', {
|
||||||
|
allowArrowFunctions: true,
|
||||||
|
}],
|
||||||
|
'react/jsx-no-duplicate-props': 'warn',
|
||||||
|
'react/jsx-no-literals': 'off',
|
||||||
|
'react/jsx-no-undef': 'warn',
|
||||||
|
'react/jsx-pascal-case': 'warn',
|
||||||
|
'react/jsx-props-no-multi-spaces': 'warn',
|
||||||
|
'react/jsx-uses-react': 'warn',
|
||||||
|
'react/jsx-uses-vars': 'warn',
|
||||||
|
'react/jsx-no-comment-textnodes': 'warn',
|
||||||
|
'react/jsx-tag-spacing': ['warn', {
|
||||||
|
beforeClosing: 'never',
|
||||||
|
}],
|
||||||
|
'react/jsx-wrap-multilines': 'warn',
|
||||||
|
'react/no-deprecated': 'warn',
|
||||||
|
'react/no-did-mount-set-state': 'warn',
|
||||||
|
'react/no-did-update-set-state': 'warn',
|
||||||
|
'react/no-direct-mutation-state': 'error',
|
||||||
|
'react/no-is-mounted': 'warn',
|
||||||
|
'react/no-multi-comp': 'warn',
|
||||||
|
'react/no-string-refs': 'warn',
|
||||||
|
'react/no-this-in-sfc': 'error',
|
||||||
|
'react/no-unknown-property': 'warn',
|
||||||
|
'react/no-will-update-set-state': 'error',
|
||||||
|
'react/prefer-es6-class': 'warn',
|
||||||
|
'react/react-in-jsxscope': 'off',
|
||||||
|
'react/require-render-return': 'warn',
|
||||||
|
'react/self-closing-comp': 'warn',
|
||||||
|
'react/sort-comp': ['warn', {
|
||||||
|
order: ['lifecycle', 'render', 'everything-else'],
|
||||||
|
}],
|
||||||
|
|
||||||
|
// React hooks
|
||||||
|
'react-hooks/rules-of-hooks': 'error',
|
||||||
|
'react-hooks/exhaustive-deps': 'warn',
|
||||||
|
|
||||||
|
// Ely.by's custom rules
|
||||||
|
'@elyby/jsx-closing-bracket-location': 'warn',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default config;
|
62
src/configs/typescript.ts
Normal file
62
src/configs/typescript.ts
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
import { Linter } from 'eslint';
|
||||||
|
|
||||||
|
const config: Linter.Config = {
|
||||||
|
parser: '@typescript-eslint/parser',
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
plugins: [
|
||||||
|
'@typescript-eslint',
|
||||||
|
],
|
||||||
|
|
||||||
|
overrides: [
|
||||||
|
{
|
||||||
|
files: ['*.ts', '*.tsx'],
|
||||||
|
rules: {
|
||||||
|
'camelcase': 'off',
|
||||||
|
'func-call-spacing': 'off',
|
||||||
|
'indent': 'off',
|
||||||
|
'no-array-constructor': 'off',
|
||||||
|
'no-extra-parens': 'off',
|
||||||
|
'no-unused-vars': 'off',
|
||||||
|
'valid-jsdoc': 'off',
|
||||||
|
'semi': 'off',
|
||||||
|
|
||||||
|
'react/prop-types': 'off',
|
||||||
|
|
||||||
|
'@typescript-eslint/adjacent-overload-signatures': 'error',
|
||||||
|
'@typescript-eslint/array-type': ['error', 'generic'],
|
||||||
|
'@typescript-eslint/camelcase': 'error',
|
||||||
|
'@typescript-eslint/class-name-casing': 'error',
|
||||||
|
'@typescript-eslint/explicit-member-accessibility': 'error',
|
||||||
|
'@typescript-eslint/func-call-spacing': 'error',
|
||||||
|
'@typescript-eslint/indent': 'error',
|
||||||
|
'@typescript-eslint/interface-name-prefix': ['error', 'never'],
|
||||||
|
'@typescript-eslint/member-delimiter-style': 'error',
|
||||||
|
'@typescript-eslint/no-angle-bracket-type-assertion': 'error',
|
||||||
|
'@typescript-eslint/no-array-constructor': 'error',
|
||||||
|
'@typescript-eslint/no-empty-interface': 'error',
|
||||||
|
'@typescript-eslint/no-extra-parens': ['warn', 'all', {
|
||||||
|
nestedBinaryExpressions: false,
|
||||||
|
ignoreJSX: 'multi-line',
|
||||||
|
}],
|
||||||
|
'@typescript-eslint/no-inferrable-types': 'error',
|
||||||
|
'@typescript-eslint/no-misused-new': 'error',
|
||||||
|
'@typescript-eslint/no-namespace': 'error',
|
||||||
|
'@typescript-eslint/no-object-literal-type-assertion': 'error',
|
||||||
|
'@typescript-eslint/no-parameter-properties': 'error',
|
||||||
|
'@typescript-eslint/no-triple-slash-reference': 'error',
|
||||||
|
'@typescript-eslint/no-unused-vars': 'error',
|
||||||
|
'@typescript-eslint/no-use-before-define': 'error',
|
||||||
|
'@typescript-eslint/no-useless-constructor': 'warn',
|
||||||
|
'@typescript-eslint/no-var-requires': 'error',
|
||||||
|
'@typescript-eslint/prefer-for-of': 'warn',
|
||||||
|
'@typescript-eslint/prefer-interface': 'error',
|
||||||
|
'@typescript-eslint/prefer-namespace-keyword': 'error',
|
||||||
|
'@typescript-eslint/semi': 'error',
|
||||||
|
'@typescript-eslint/type-annotation-spacing': 'error',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
export default config;
|
@ -1,8 +1,12 @@
|
|||||||
import allRules from './rules';
|
import allRules from './rules';
|
||||||
import config from './configs/all';
|
import baseConfig from './configs/base';
|
||||||
|
import reactConfig from './configs/react';
|
||||||
|
import typescriptConfig from './configs/typescript';
|
||||||
|
|
||||||
export const rules = allRules;
|
export const rules = allRules;
|
||||||
|
|
||||||
export const configs = {
|
export const configs = {
|
||||||
config,
|
base: baseConfig,
|
||||||
|
react: reactConfig,
|
||||||
|
typescript: typescriptConfig,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user