20 lines
389 B
JSON
20 lines
389 B
JSON
{
|
|
"defaultSeverity": "warning",
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"node_modules/**",
|
|
"*.json",
|
|
"**/*.json"
|
|
]
|
|
},
|
|
"rules": {
|
|
"indent": [true, "spaces", 4],
|
|
"curly": false,
|
|
"interface-name": false,
|
|
"no-consecutive-blank-lines": false,
|
|
"object-literal-sort-keys": false,
|
|
"ordered-imports": false,
|
|
"quotemark": [true, "single"]
|
|
}
|
|
}
|