Skip to content

Commit db7b471

Browse files
committed
chore: QPPA-7889 update linter config
1 parent 8d53b55 commit db7b471

9 files changed

+341
-187
lines changed

.eslintrc.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
"prettier"
1212
],
1313
"rules": {
14-
"prettier/prettier": "error"
14+
"semi": ["error", "always"],
15+
"prettier/prettier": "error",
16+
"no-unused-vars": "warn"
1517
},
1618
"globals": {
1719
"after": false,
@@ -21,5 +23,9 @@
2123
"context": false,
2224
"describe": false,
2325
"it": false
24-
}
26+
},
27+
"parserOptions": {
28+
"sourceType": "module"
29+
},
30+
"parser": "@typescript-eslint/parser"
2531
}

.prettierrc

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2-
singleQuote: true,
3-
tabWidth: 4
2+
"singleQuote": true,
3+
"tabWidth": 4,
4+
"trailingComma": "all",
5+
"semi": true,
6+
"arrowParens": "always",
7+
"bracketSpacing": true,
8+
"parser": "typescript",
9+
"endOfLine": "auto"
410
}

0 commit comments

Comments
 (0)