vscode-dotnet-runtime/tslint.json

20 строки
536 B
JSON
Исходник Обычный вид История

2019-05-08 05:03:13 +03:00
{
"extends": "tslint:recommended",
"rules": {
"arrow-parens": false,
"file-header": [true, "------"],
"interface-name": false,
"no-console": false,
"no-return-await": true,
"no-inferrable-types": true,
"object-literal-sort-keys": false,
"prefer-template": true,
"quotemark": [true, "single"],
"variable-name": [true, "check-format"],
"max-line-length": {
"options": {
"limit": 200
}
}
}
}