UNPKG

606 BPlain TextView Raw
1{
2 "parser": "@typescript-eslint/parser",
3 "plugins": ["@typescript-eslint"],
4 "extends": "airbnb-base",
5 "env": {
6 "mocha": true
7 },
8 "rules": {
9 "indent": [ "error", 4, { "SwitchCase": 1 }],
10 "no-underscore-dangle": "off",
11 "max-len": "off",
12 "import/extensions": ["error", "ignorePackages", { "ts": "never" }]
13 },
14 "settings": {
15 "import/parsers": {
16 "@typescript-eslint/parser": [".ts"]
17 },
18 "import/resolver": {
19 "node": {
20 "extensions": [".js", ".ts"]
21 }
22 }
23 }
24}
\No newline at end of file