Skip to content

Instantly share code, notes, and snippets.

@carlosdelfino
Created October 25, 2018 19:58
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save carlosdelfino/ce2d9ef3fbe0050db5e1f4e3aeddd750 to your computer and use it in GitHub Desktop.
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["node_modules/**/*.ts"]
},
"rules": {
"interface-over-type-literal": false,
"jsx-boolean-value": [true, "never"],
"jsx-no-lambda": false,
"no-console": false,
"no-shadowed-variable": false,
"object-literal-sort-keys": false,
"ordered-imports": [
true,
{
"import-sources-order": "lowercase-last",
"named-imports-order": "lowercase-last"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment