UNPKG

507 BJSONView Raw
1{
2 "extends": ["dcl-tslint-config-standard", "tslint-plugin-prettier"],
3 "rules": {
4 "no-commented-out-code": false,
5 "jsx-no-multiline-js": false,
6 "ban-types": [true, "Number", "Boolean", "String", "Object"],
7 "prettier": [
8 true,
9 { "printWidth": 80, "singleQuote": true, "semi": false }
10 ],
11 "quotemark": [true, "single", "jsx-double"],
12 "jsx-boolean-value": [false]
13 },
14 "linterOptions": {
15 "exclude": ["config/**/*.js", "node_modules/**/*.ts", "./**/*.js"]
16 }
17}