dtslint/tslint.json

18 строки
523 B
JSON

{
"extends": "tslint:latest",
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"indent": [true, "spaces"],
"interface-name": [true, "never-prefix"],
"max-line-length": [true, 130],
"member-access": [true, "no-public"],
"variable-name": [true, "check-format", "allow-leading-underscore"],
"curly": false,
"no-console": false,
"no-namespace": false,
"object-literal-sort-keys": false,
"switch-default": false
}
}