setup-maven/.eslintrc.json
2022-08-04 15:20:55 +07:00

86 lines
1.8 KiB
JSON

{
"env": {
"es6": true,
"node": true
},
"extends": ["eslint:all"],
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
"rules": {
"capitalized-comments": [
"warn",
"always",
{
"ignorePattern": "noinspection|pragma",
"ignoreInlineComments": true
}
],
"one-var": ["warn", "never"],
"sort-imports": [
"warn",
{
"allowSeparatedGroups": true,
"ignoreDeclarationSort": true
}
],
"no-undefined": "off",
"require-unicode-regexp": "off",
"no-ternary": "off",
"no-negated-condition": "off",
"prefer-named-capture-group": "off"
},
"overrides": [
{
"files": ["**/*.ts"],
"plugins": ["@typescript-eslint"],
"extends": ["plugin:@typescript-eslint/all"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"rules": {
"func-style": [
"error",
"declaration",
{
"allowArrowFunctions": true
}
],
"@typescript-eslint/no-implicit-any-catch": "off",
"@typescript-eslint/no-magic-numbers": [
"warn",
{
"ignore": [0, 1],
"ignoreArrayIndexes": true
}
],
"@typescript-eslint/strict-boolean-expressions": [
"error",
{
"allowNullableString": true
}
]
}
},
{
"files": ["**/*.test.ts"],
"env": {
"jest/globals": true
},
"plugins": ["jest"],
"extends": ["plugin:jest/all"],
"rules": {
"max-lines-per-function": ["warn", 120],
"jest/no-hooks": "off",
"jest/prefer-expect-assertions": "off"
}
},
{
"files": ["**/*"],
"extends": ["prettier"]
}
]
}