mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 13:11:02 +00:00
23 lines
512 B
JSON
23 lines
512 B
JSON
{
|
|
"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": []
|
|
}
|