Created
August 30, 2017 16:46
-
-
Save HBehrens/107775fa7f56297af3196a207970a081 to your computer and use it in GitHub Desktop.
tslint from Intrinsic Gravelty's editor frontend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": ["tslint-react"], | |
"rules": { | |
"align": [ | |
true, | |
"parameters", | |
"arguments", | |
"statements" | |
], | |
"ban": false, | |
"class-name": true, | |
"comment-format": [ | |
true, | |
"check-space" | |
], | |
"curly": true, | |
"eofline": false, | |
"forin": true, | |
"indent": [ true, "spaces" ], | |
"interface-name": [true, "never-prefix"], | |
"jsdoc-format": true, | |
"jsx-no-lambda": false, | |
"jsx-no-multiline-js": false, | |
"label-position": true, | |
"max-line-length": [ true, 120 ], | |
"member-ordering": [ | |
true, | |
"public-before-private", | |
"static-before-instance", | |
"variables-before-functions" | |
], | |
"no-any": false, | |
"no-arg": true, | |
"no-bitwise": true, | |
"no-console": false, | |
"no-consecutive-blank-lines": true, | |
"no-construct": true, | |
"no-debugger": true, | |
"no-duplicate-variable": true, | |
"no-empty": true, | |
"no-eval": true, | |
"no-shadowed-variable": true, | |
"no-string-literal": true, | |
"no-switch-case-fall-through": true, | |
"no-trailing-whitespace": false, | |
"no-unused-expression": true, | |
"no-use-before-declare": false, | |
"one-line": [ | |
true, | |
"check-catch", | |
"check-else", | |
"check-open-brace", | |
"check-whitespace" | |
], | |
"quotemark": [true, "single", "jsx-double"], | |
"radix": true, | |
"semicolon": [true, "always"], | |
"switch-default": true, | |
"trailing-comma": false, | |
"triple-equals": [ true, "allow-null-check" ], | |
"typedef": [ | |
true, | |
"parameter", | |
"property-declaration" | |
], | |
"typedef-whitespace": [ | |
true, | |
{ | |
"call-signature": "nospace", | |
"index-signature": "nospace", | |
"parameter": "nospace", | |
"property-declaration": "nospace", | |
"variable-declaration": "nospace" | |
} | |
], | |
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"], | |
"whitespace": [ | |
true, | |
"check-branch", | |
"check-decl", | |
"check-module", | |
"check-operator", | |
"check-separator", | |
"check-type", | |
"check-typecast" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment