39 lines
901 B
JSON
39 lines
901 B
JSON
{
|
|
"defaultSeverity": "warning",
|
|
// "extends": "tslint:recommended",
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"node_modules/**",
|
|
"build/**",
|
|
"package.json"
|
|
]
|
|
},
|
|
"rules": {
|
|
"quotemark": false,
|
|
"indent": [true, "spaces", 0],
|
|
"esModuleInterop": true,
|
|
"trailing-comma": false,
|
|
"interface-name": false,
|
|
"ordered-imports": false,
|
|
"no-var-requires": false,
|
|
"object-literal-sort-keys": false,
|
|
"object-literal-key-quotes": false,
|
|
"no-consecutive-blank-lines": false,
|
|
"no-console": false,
|
|
"completed-docs": false,
|
|
"curly": [
|
|
true,
|
|
"ignore-same-line"
|
|
],
|
|
"jsdoc-format": false,
|
|
"no-redundant-jsdoc": false,
|
|
"max-line-length": [true, 500],
|
|
"no-unused-expression": false,
|
|
"no-shadowed-variable": false,
|
|
"member-access": [true, "no-public"],
|
|
"no-string-literal": false
|
|
},
|
|
"jsRules": {
|
|
}
|
|
}
|