Skip to content

Instantly share code, notes, and snippets.

@ricklancee
Created November 27, 2017 08:33
Show Gist options
  • Save ricklancee/ca3b59582bef9a868803d48a8b771fe2 to your computer and use it in GitHub Desktop.
Save ricklancee/ca3b59582bef9a868803d48a8b771fe2 to your computer and use it in GitHub Desktop.
Typescript React TSlint settings
{
"extends": ["tslint-react", "tslint-eslint-rules"],
"rules": {
"align": [ true, "parameters" ],
"array-bracket-spacing": [true, "always", { "singleValue": false, "objectsInArray": false, "arraysInArrays": false }],
"ban": false,
"block-spacing": [true, "always"],
"brace-style": [true, "1tbs"],
"class-name": true,
"comment-format": [true, "check-space"],
"curly": true,
"dot-location": ["error", "property"],
"eofline": true,
"forin": true,
"handle-callback-err": [true, "error"],
"indent": [true, "spaces", 4],
"interface-name": [true, "never-prefix"],
"interface-over-type-literal": true,
"jsdoc-format": true,
"jsx-curly-spacing": [true, "never"],
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-self-close": true,
"jsx-wrap-multiline": true,
"label-position": true,
"linebreak-style": [true, "LF"],
"max-line-length": [ true, 150 ],
"member-access": [true, "check-accessor", "check-parameter-property"],
"member-ordering": [ true, { "order": [ "static-field", "public-instance-field", "protected-instance-field", "private-instance-field", "constructor", "public-instance-method", "protected-instance-method", "private-instance-method" ] } ],
"no-any": false,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": true,
"no-console": true,
"no-constant-condition": true,
"no-construct": true,
"no-control-regex": true,
"no-debugger": true,
"no-default-export": true,
"no-duplicate-case": true,
"no-duplicate-variable": true,
"no-empty-character-class": true,
"no-empty": [true, "allow-empty-catch"],
"no-eval": true,
"no-ex-assign": true,
"no-extra-boolean-cast": true,
"no-extra-parens": ["all", { "returnAssign": false, "ignoreJSX": "all" }],
"no-extra-semi": true,
"no-inner-declarations": true,
"no-invalid-regexp": true,
"no-invalid-this": true,
"no-magic-numbers": false,
"no-multi-spaces": true,
"no-regex-spaces": true,
"no-shadowed-variable": false,
"no-string-literal": true,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unexpected-multiline": true,
"no-unsafe-finally": true,
"no-unused-expression": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"object-curly-spacing": [true, "always", { "arraysInObjects": false, "objectsInObjects": false }],
"object-literal-key-quotes": [true, "as-needed"],
"one-line": [ true, "check-catch", "check-else", "check-open-brace", "check-whitespace" ],
"one-variable-per-declaration": [true, "ignore-for-loop"],
"prefer-const": true,
"prefer-template": true,
"quotemark": [true, "single", "jsx-double"],
"radix": true,
"semicolon": [true, "never"],
"space-in-parens": [true, "never"],
"switch-default": true,
"ter-arrow-parens": [true, "as-needed"],
"ter-arrow-spacing": [true],
"ter-func-call-spacing": [true],
"ter-indent": [true, 4],
"ter-max-len": [true, 150],
"ter-no-irregular-whitespace": true,
"ter-no-sparse-arrays": true,
"ter-prefer-arrow-callback": true,
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"triple-equals": true,
"typedef-whitespace": [ true, { "call-signature": "nospace", "index-signature": "nospace", "parameter": "nospace", "property-declaration": "nospace", "variable-declaration": "nospace" } ],
"typedef": [ true, "parameter", "property-declaration" ],
"use-isnan": true,
"valid-typeof": true,
"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