Listory/tslint.json

24 lines
512 B
JSON
Raw Normal View History

2020-01-25 22:19:14 +01:00
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-prettier",
"tslint-plugin-prettier"
],
"jsRules": {
"no-unused-expression": true
},
"rules": {
"member-access": [false],
"ordered-imports": [false],
"max-line-length": [true, 150],
"member-ordering": [false],
"interface-name": [false],
"arrow-parens": false,
"object-literal-sort-keys": false,
"trailing-comma": false,
"prettier": "true"
},
"rulesDirectory": []
}