Skip to content

Instantly share code, notes, and snippets.

@saiumesh535
Created April 15, 2019 16:33
Show Gist options
  • Save saiumesh535/b80f2450dd0cb71f031579b7ab631084 to your computer and use it in GitHub Desktop.
Save saiumesh535/b80f2450dd0cb71f031579b7ab631084 to your computer and use it in GitHub Desktop.
tslint.json
{
"defaultSeverity": "error",
"extends": "./node_modules/tslint/lib/configs/recommended",
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"jsRules": {},
"rules": {
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"no-console": [false, "info"],
"interface-name": [true, "never-prefix"],
"object-literal-sort-keys": false,
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"named-imports-order": "any"
}
]
},
"rulesDirectory": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment