Skip to content

Instantly share code, notes, and snippets.

@olee
Created September 18, 2016 17:42
Show Gist options
  • Save olee/d9110ec8990fd39e2d772463c91006d7 to your computer and use it in GitHub Desktop.
Save olee/d9110ec8990fd39e2d772463c91006d7 to your computer and use it in GitHub Desktop.
tslint.json config for FE scripting
{
"rules": {
"class-name": true,
"comment-format": [true, "check-space"],
"curly": false,
"eofline": true,
"forin": false,
"indent": [false, "tabs"],
"label-position": true,
"label-undefined": true,
"max-line-length": [false, 180],
"member-access": [false, "check-accessor"],
"member-ordering": [true,
"static-before-instance",
"variables-before-functions"
],
"no-any": false,
"no-arg": true,
"no-bitwise": false,
"no-console": [true,
"_log",
"_debug",
"_info",
"_time",
"_timeEnd",
"_trace"
],
"no-construct": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-inferrable-types": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-switch-case-fall-through": true,
"trailing-comma": true,
"no-trailing-whitespace": false,
"no-unused-expression": true,
"no-unused-variable": true,
"no-unreachable": true,
"no-use-before-declare": true,
"no-var-keyword": false,
"object-literal-sort-keys": false,
"one-line": [true,
"check-open-brace",
"check-catch",
"check-whitespace"
],
"quotemark": [true, "single"],
"radix": false,
"semicolon": true,
"triple-equals": [true, "allow-null-check"],
"typedef-whitespace": [true, {
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}],
"variable-name": false,
"whitespace": [true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment