mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-13 12:37:16 +08:00
24 lines
658 B
JSON
24 lines
658 B
JSON
{
|
|
"extends": "../tslint.json",
|
|
"rules": {
|
|
"array-type": [false, "array"],
|
|
"quotemark": [false, "double"],
|
|
"semicolon": [false, "always"],
|
|
"space-before-function-paren": [false, "always"],
|
|
"max-line-length": [false, 200],
|
|
"no-empty-interface": false,
|
|
"no-redundant-modifiers": false,
|
|
"only-arrow-functions": [false],
|
|
"prefer-for-of": false,
|
|
"unified-signatures": false,
|
|
"whitespace": [
|
|
false,
|
|
"check-branch",
|
|
"check-decl",
|
|
"check-operator",
|
|
"check-separator",
|
|
"check-type"
|
|
]
|
|
}
|
|
}
|