UNPKG

432 BJSONView Raw
1{
2 "extends": [
3 "dcl-tslint-config-standard",
4 "tslint-plugin-prettier"
5 ],
6 "rules": {
7 "no-commented-out-code": false,
8 "variable-name": [
9 true,
10 "ban-keywords",
11 "allow-leading-underscore"
12 ],
13 "prettier": [
14 true,
15 {
16 "printWidth": 80,
17 "singleQuote": true,
18 "semi": false
19 }
20 ]
21 },
22 "linterOptions": {
23 "exclude": [
24 "./**/*.js"
25 ]
26 }
27}
\No newline at end of file