awesome-typescript-loader
Version:
Awesome TS loader for webpack
29 lines (28 loc) • 611 B
JSON
{
"rules": {
"class-name": true,
"comment-format": [
true,
"check-space"
],
"curly": true,
"eofline": true,
"indent": [true],
"jsdoc-format": true,
"member-ordering": [
true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"no-arg": true,
"no-consecutive-blank-lines": [true],
"no-debugger": true,
"no-duplicate-variable": true,
"no-trailing-whitespace": true,
"no-var-keyword": true,
"quotemark": [true],
"typedef-whitespace": [true],
"semicolon": [true]
}
}