mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
15 lines
411 B
JSON
15 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"]
|
|
}
|
|
}
|