Files
DefinitelyTyped/types/mithril/tslint.json
2017-03-30 22:06:43 -04:00

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"
]
}
}