forked from emberjs/ember.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
34 lines (34 loc) · 782 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
{
"extends": [
"tslint-config-prettier",
"tslint-plugin-prettier"
],
"rules": {
"prettier": [true, {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
}],
"curly": false,
"no-var-keyword": true,
"indent": [true, "spaces"],
"label-position": true,
"no-consecutive-blank-lines": [
true
],
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-inferrable-types": [true],
"no-trailing-whitespace": true,
"no-unused-expression": true,
"triple-equals": true,
"class-name": true,
"no-require-imports": true,
"no-duplicate-imports": true,
"ordered-imports": true,
"quotemark": {
"options": ["single", "avoid-escape"]
}
}
}