Skip to content

Instantly share code, notes, and snippets.

@jeffersontpadua
Created November 13, 2018 11:09
Show Gist options
  • Save jeffersontpadua/2bd7410b2b656f253b5b36c81b180637 to your computer and use it in GitHub Desktop.
Save jeffersontpadua/2bd7410b2b656f253b5b36c81b180637 to your computer and use it in GitHub Desktop.
Lints para Typescript
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
],
"jsRules": {},
"rules": {
"semicolon": [
true,
"never"
],
"quotemark": [
true,
"single",
"jsx-double"
],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"file-name-casing": [
true,
"pascal-case"
]
},
"rulesDirectory": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment