AdGuardHome/client/.eslintrc.json

72 lines
1.7 KiB
JSON
Raw Normal View History

2018-08-30 15:25:33 +01:00
{
2024-07-03 13:38:37 +01:00
"plugins": ["prettier"],
2018-08-30 15:25:33 +01:00
"extends": [
2024-07-03 13:38:37 +01:00
"airbnb-base",
"prettier",
"eslint:recommended",
2018-08-30 15:25:33 +01:00
"plugin:react/recommended",
2024-07-03 13:38:37 +01:00
"plugin:@typescript-eslint/recommended"
2018-08-30 15:25:33 +01:00
],
2024-07-03 13:38:37 +01:00
"parser": "@typescript-eslint/parser",
2018-08-30 15:25:33 +01:00
"env": {
"jest": true,
"node": true,
"browser": true,
"commonjs": true
},
2018-10-12 13:20:59 +01:00
"settings": {
"react": {
"pragma": "React",
"version": "16.4"
},
"import/resolver": {
2024-07-03 13:38:37 +01:00
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
2018-10-12 13:20:59 +01:00
}
},
2018-08-30 15:25:33 +01:00
"rules": {
2024-07-03 13:38:37 +01:00
"@typescript-eslint/no-explicit-any": "off",
"import/extensions": [
2020-08-19 16:23:05 +01:00
"error",
2024-07-03 13:38:37 +01:00
"ignorePackages",
2020-08-19 16:23:05 +01:00
{
2024-07-03 13:38:37 +01:00
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
2020-08-19 16:23:05 +01:00
}
],
2018-08-30 15:25:33 +01:00
"class-methods-use-this": "off",
"no-shadow": "off",
2019-01-23 14:22:04 +00:00
"camelcase": "off",
2020-08-19 16:23:05 +01:00
"no-console": [
"warn",
{
2024-07-03 13:38:37 +01:00
"allow": ["warn", "error"]
2020-08-19 16:23:05 +01:00
}
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"import/prefer-default-export": "off",
2023-09-07 15:13:48 +01:00
"no-alert": "off",
"arrow-body-style": "off",
"max-len": [
"error",
120,
2,
{
"ignoreUrls": true,
"ignoreComments": false,
"ignoreRegExpLiterals": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}
]
2018-08-30 15:25:33 +01:00
}
}