12 lines
368 B
JSON
12 lines
368 B
JSON
{
|
|
"defaultSeverity": "error",
|
|
"extends": ["tslint:recommended", "tslint-config-prettier"],
|
|
"rules": {
|
|
"quotemark": [true, "single"],
|
|
"interface-name": false,
|
|
"object-literal-sort-keys": false,
|
|
// Allow `_bar` to sort with tsc's `noUnusedParameters` option
|
|
"variable-name": [true, "allow-leading-underscore"]
|
|
}
|
|
}
|