forked from chrisinajar/proofofcombat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
35 lines (34 loc) · 896 Bytes
/
tslint.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
29
30
31
32
33
34
35
{
"extends": [
"tslint:latest",
"tslint:recommended",
"tslint-react",
"tslint-eslint-rules"
],
"rules": {
"quotemark": [true, "single", "jsx-double"],
"space-before-function-paren": ["error", "always"],
"ordered-imports": [false],
"object-literal-sort-keys": [false],
"interface-name": [false],
"curly": [true, "as-needed"],
"no-multi-spaces": [true],
"semicolon": [true, "always", "ignore-interfaces"],
"ter-indent": [true, 2],
"vars-on-top": "error",
"arrow-body-style": [2, "as-needed"],
"jsx-curly-spacing": [2, "always"],
"template-curly-spacing": ["error", "always"],
"eofline": false,
"dot-notation": "warn",
"default-case": "warn",
"no-multi-str": "error",
"no-unused-expressions": [
"error",
{
"allowShortCircuit": false,
"allowTernary": false
}
]
}
}