@daybrush/utils
Version:
utils for daybrush
28 lines • 635 B
JSON
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"rules": {
"jsdoc-format": false,
"forin": false,
"no-console": false,
"no-any": false,
"indent": [true, "spaces", 2],
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-unused-expression": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"max-line-length": [true, {"limit": 120, "ignore-pattern": "(\\* @)|//"}],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
]
}
}