Files
talk/tslint.json
T
Kiwi 65c8da0f34 Merge client into next (#1709)
* Merge client
* Add linting script
* Rename serve to start:development
* Move error harmonization and handling to network layer
* Show Comment Stream
* Added initial test
2018-06-27 22:06:30 +00:00

27 lines
696 B
JSON

{
"extends": [
"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"
]
}
}