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