rust/editors/code/tslint.json

16 lines
411 B
JSON
Raw Normal View History

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,
"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
}