rust-analyzer/editors/code/tslint.json

12 lines
368 B
JSON
Raw Normal View History

2018-10-07 20:59:02 +00:00
{
2018-10-08 21:38:33 +00:00
"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"]
2018-10-08 21:38:33 +00:00
}
2018-10-07 20:59:02 +00:00
}