33 lines
949 B
JSON
33 lines
949 B
JSON
{
|
|
"extends": "tslint:recommended",
|
|
"rules": {
|
|
"max-line-length": {
|
|
"options": [120]
|
|
},
|
|
"trailing-comma": [true, {"multiline": "always"}],
|
|
"triple-equals": true,
|
|
"curly": true,
|
|
"indent": [true, "spaces", 4],
|
|
"interface-name": false,
|
|
"object-literal-sort-keys": false,
|
|
"ordered-imports": false,
|
|
// "quotemark": [true, "single", "avoid-escape", "avoid-template"],
|
|
"semicolon": [true, "always"],
|
|
"no-console": [false],
|
|
"quotemark": [false],
|
|
"no-default-export": true,
|
|
"no-var-requires": false,
|
|
"prefer-const": false,
|
|
"only-arrow-functions": false,
|
|
"space-before-function-paren": false,
|
|
"object-literal-shorthand": false,
|
|
"prefer-for-of": false
|
|
},
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"./text/fixtures",
|
|
"./node_modules"
|
|
]
|
|
}
|
|
}
|