mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-03 19:42:27 +08:00
25 lines
706 B
JSON
25 lines
706 B
JSON
{
|
|
"extends": "dtslint/dt.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-reference-import": false,
|
|
"only-arrow-functions": [false],
|
|
"prefer-for-of": false,
|
|
"strict-export-declare-modifiers": false,
|
|
"unified-signatures": false,
|
|
"whitespace": [
|
|
false,
|
|
"check-branch",
|
|
"check-decl",
|
|
"check-operator",
|
|
"check-separator",
|
|
"check-type"
|
|
]
|
|
}
|
|
}
|