/[sudobot]/trunk/.eslintrc
ViewVC logotype

Contents of /trunk/.eslintrc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 164 - (show annotations)
Mon Jul 29 17:28:51 2024 UTC (8 months, 1 week ago) by rakin
File size: 849 byte(s)
build(eslint): set no-mixed-spaces-and-tabs rule to warn
1 {
2 "root": true,
3 "parser": "@typescript-eslint/parser",
4 "plugins": [
5 "@typescript-eslint"
6 ],
7 "extends": [
8 "eslint:recommended",
9 "plugin:@typescript-eslint/eslint-recommended",
10 "plugin:@typescript-eslint/recommended"
11 ],
12 "rules": {
13 "prefer-const": "warn",
14 "no-mixed-spaces-and-tabs": "warn",
15 "@typescript-eslint/no-inferrable-types": "warn",
16 "no-useless-escape": "warn",
17 "@typescript-eslint/no-empty-function": "warn",
18 "@typescript-eslint/no-extra-semi": "warn",
19 "no-prototype-builtins": "warn",
20 "@typescript-eslint/no-var-requires": "warn",
21 "no-empty": "warn",
22 "@typescript-eslint/no-non-null-asserted-optional-chain": "warn",
23 "use-isnan": "warn",
24 "@typescript-eslint/ban-types": "warn"
25 }
26 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26