mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
27 lines
752 B
JSON
27 lines
752 B
JSON
{
|
|
"defaultSeverity": "error"
|
|
, "extends": [
|
|
"tslint:recommended"
|
|
]
|
|
, "jsRules": false
|
|
, "rules": {
|
|
"no-consecutive-blank-lines": false
|
|
, "arrow-parens": false
|
|
, "interface-name": false
|
|
, "max-classes-per-file": false
|
|
, "max-line-length": [ true, {
|
|
"limit": 80
|
|
, "ignore-pattern": "//|.*(\"|`);?$"
|
|
}]
|
|
, "member-access": [ true, "no-public" ]
|
|
, "no-console": [ true, "log" ]
|
|
, "no-namespace": [ true, "allow-declarations" ]
|
|
, "object-literal-sort-keys": false
|
|
, "radix": false
|
|
, "semicolon": [ true, "always" ]
|
|
, "space-before-function-paren": [ true, "always" ]
|
|
, "trailing-comma": false
|
|
}
|
|
, "rulesDirectory": []
|
|
}
|