Files
talk/tslint.json
T
KiwiandGitHub ea6f42c256 [CORL-305] Speed up build process and upgrade dependencies (#2304)
* feat: speed up build process, upgrade majority of dependencies

* feat: allow specifying max cores

* chore: add some comments
2019-05-07 20:22:19 +02:00

40 lines
864 B
JSON

{
"extends": [
"./tslint.dynamic.js",
"tslint:recommended",
"tslint-config-prettier",
"tslint-plugin-prettier"
],
"rules": {
"prettier": true,
"object-literal-sort-keys": false,
"interface-name": [true, "never-prefix"],
"no-switch-case-fall-through": true,
"member-ordering": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
},
"jsRules": {
"prettier": true,
"object-literal-sort-keys": false,
"no-switch-case-fall-through": true,
"member-ordering": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
},
"linterOptions": {
"exclude": ["**/node_modules/**/*", "./config/coverage/**"]
}
}