2018-10-07 22:59:02 +02:00
|
|
|
{
|
2018-10-08 22:38:33 +01:00
|
|
|
"defaultSeverity": "error",
|
2019-12-17 23:48:26 +08:00
|
|
|
"extends": [
|
|
|
|
"tslint:recommended",
|
|
|
|
"tslint-config-prettier",
|
|
|
|
"tslint-plugin-prettier"
|
|
|
|
],
|
2018-10-08 22:38:33 +01:00
|
|
|
"rules": {
|
|
|
|
"interface-name": false,
|
2019-12-17 23:48:26 +08:00
|
|
|
"prettier": true,
|
2019-12-12 00:41:16 +09:00
|
|
|
"object-literal-sort-keys": false,
|
|
|
|
// Allow `_bar` to sort with tsc's `noUnusedParameters` option
|
|
|
|
"variable-name": [true, "allow-leading-underscore"]
|
2018-10-08 22:38:33 +01:00
|
|
|
}
|
2018-10-07 22:59:02 +02:00
|
|
|
}
|