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