Skip to content

Instantly share code, notes, and snippets.

@alanhg
Created January 13, 2020 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanhg/420819cb2703847d11049204ccec4a9a to your computer and use it in GitHub Desktop.
Save alanhg/420819cb2703847d11049204ccec4a9a to your computer and use it in GitHub Desktop.
tslint
{
"extends": ["tslint:latest", "tslint-react", "tslint-eslint-rules", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["lib/**"]
},
"jsRules": {
"object-literal-sort-keys": false
},
"rules": {
"jsx-no-lambda": false,
"class-name": true,
"comment-format": [true, "check-space"],
"eofline": true,
"forin": true,
"indent": [true, "spaces", 2],
"label-position": true,
"max-line-length": [true, 180],
"member-access": false,
"member-ordering": [true, "static-before-instance", "variables-before-functions"],
"no-arg": true,
"no-bitwise": false,
"no-console": [true, "log", "debug", "info", "time", "timeEnd", "trace"],
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-eval": true,
"no-inferrable-types": [true],
"no-shadowed-variable": true,
"no-string-literal": false,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unused-expression": [true, "allow-fast-null-checks"],
"no-var-keyword": true,
"no-implicit-dependencies": [false, "dev"],
"object-literal-sort-keys": false,
"one-line": [true, "check-open-brace", "check-catch", "check-else", "check-whitespace"],
"quotemark": [true, "single", "jsx-double", "avoid-escape"],
"radix": false,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"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": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type",
"check-typecast",
"check-preblock"
],
"prefer-const": true,
"arrow-parens": [true, "ban-single-arg-parens"],
"arrow-return-shorthand": [true],
"import-spacing": true,
"no-consecutive-blank-lines": [true],
"object-literal-shorthand": true,
"space-before-function-paren": [
true,
{
"named": "never",
"asyncArrow": "always"
}
],
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
],
"ordered-imports": [false],
"curly": [true, "ignore-same-line"],
"switch-default": true,
"cyclomatic-complexity": [true, 40],
"no-invalid-this": [true],
"no-magic-numbers": false,
"ban-types": [true, ["Object", "Use {} instead."]],
"no-submodule-imports": [true, "app", "uuid/v4", "@fortawesome", "lodash", "redux-saga/effects", "antd", "@lenovo"],
"ter-arrow-body-style": [true],
"ter-no-irregular-whitespace": [true],
"ter-no-sparse-arrays": [true],
"ter-func-call-spacing": [true, "never"],
"no-multi-spaces": [true],
"array-bracket-spacing": [false],
"brace-style": [
true,
"1tbs",
{
"allowSingleLine": true
}
],
"object-curly-spacing": [true, "always"],
"space-in-parens": [true, "never"],
"jsx-boolean-value": [true, "never"],
"jsx-no-multiline-js": false,
"jsx-alignment": false,
"jsx-space-before-trailing-slash": true,
"interface-name": false,
"binary-expression-operand-order": true
},
"rulesDirectory": []
}
@alanhg
Copy link
Author

alanhg commented Jan 13, 2020

for pure typescript project

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment