UNPKG

581 BPlain TextView Raw
1{
2
3 "parser" : "@typescript-eslint/parser",
4 "parserOptions": {
5 "sourceType" : "module",
6 },
7
8 "plugins" : [ "@typescript-eslint" ],
9 "env" : { "es6": true, "commonjs": true },
10
11 "extends" : [
12 "eslint-config-stonecypher",
13 "plugin:@typescript-eslint/eslint-recommended"
14 ],
15
16 rules: {
17 "no-unused-vars": 0,
18 "@typescript-eslint/no-unused-vars": [
19 1, {
20 argsIgnorePattern : "^_",
21 varsIgnorePattern : "^_",
22 caughtErrors : "all",
23 caughtErrorsIgnorePattern : "^_"
24 }
25 ]
26 }
27
28}