forked from Jazcash/bar-leaderboards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
28 lines (28 loc) · 813 Bytes
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"simple-import-sort",
"unused-imports"
],
"rules": {
"semi": ["error", "always"],
"quotes": ["error", "double"],
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"unused-imports/no-unused-imports-ts": "error",
"key-spacing": ["error", {
"beforeColon": false,
"afterColon": true
}],
"curly": "error",
"eqeqeq": "error",
"brace-style": "error",
"keyword-spacing": "error",
"comma-spacing": "error",
"block-spacing": "error",
"no-trailing-spaces": "error",
"space-before-blocks": "error",
"indent": ["error", 4]
}
}