1
0
Fork 0
peertube/client/tslint.json

74 lines
2.0 KiB
JSON
Raw Normal View History

2016-04-08 18:58:07 +00:00
{
2016-04-30 06:48:00 +00:00
"rulesDirectory": ["./node_modules/codelyzer"],
2016-04-08 18:58:07 +00:00
"rules": {
"class-name": true,
"curly": false,
"eofline": true,
"indent": ["spaces"],
"max-line-length": [true, 140],
"member-ordering": [true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"no-arg": true,
"no-construct": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-unreachable": true,
"no-use-before-declare": true,
"one-line": [true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [true, "single"],
"semicolon": true,
"trailing-comma": true,
"triple-equals": true,
"variable-name": false,
2016-04-30 06:48:00 +00:00
"directive-selector-name": [true, "camelCase"],
2016-04-08 18:58:07 +00:00
"component-selector-name": [true, "kebab-case"],
2016-04-30 06:48:00 +00:00
"directive-selector-type": [true, "attribute"],
2016-04-08 18:58:07 +00:00
"component-selector-type": [true, "element"],
2016-04-30 06:48:00 +00:00
"directive-selector-prefix": [true, "my"],
"component-selector-prefix": [true, "my"],
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-attribute-parameter-decorator": true,
"no-input-rename": true,
"no-output-rename": true,
"no-forward-ref" :true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"pipe-naming": [true, "camelCase", "my"],
"component-class-suffix": true,
2016-05-27 15:25:52 +00:00
"directive-class-suffix": true,
"typedef-whitespace": [ true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"whitespace": [ true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
]
2016-04-08 18:58:07 +00:00
}
}