Skip to content

Instantly share code, notes, and snippets.

@weivall
Created November 20, 2018 13:44
Show Gist options
  • Select an option

  • Save weivall/6c89bc5bcd9e57b34f69c74ff85dc5e8 to your computer and use it in GitHub Desktop.

Select an option

Save weivall/6c89bc5bcd9e57b34f69c74ff85dc5e8 to your computer and use it in GitHub Desktop.
tsconfig.json
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["config/**/*.js", "node_modules/**/*.ts"]
},
"rules": {
"arrow-parens": false,
"eofline": false,
"interface-name": false,
"jsx-boolean-value": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"member-access": false,
"no-return-await": false,
"no-submodule-imports": false,
"no-trailing-whitespace": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-conditional-expression": false,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"trailing-comma": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
},
"defaultSeverity": "warning"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment