28 lines
473 B
JSON
28 lines
473 B
JSON
{
|
|
"defaultSeverity": "warning",
|
|
"extends": [
|
|
"tslint:recommended"
|
|
],
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"node_modules/**"
|
|
]
|
|
},
|
|
"rules": {
|
|
"quotemark": [
|
|
true,
|
|
"double"
|
|
],
|
|
"indent": [
|
|
true,
|
|
"spaces",
|
|
4
|
|
],
|
|
"no-console": false,
|
|
"interface-name": false,
|
|
"ordered-imports": false,
|
|
"object-literal-sort-keys": false,
|
|
"no-consecutive-blank-lines": false,
|
|
"variable-name": false
|
|
}
|
|
} |