Skip to content

Instantly share code, notes, and snippets.

@Alexisvt
Created February 8, 2018 21:00
Show Gist options
  • Save Alexisvt/9eb22bb231bc8d0102d495bbb5695082 to your computer and use it in GitHub Desktop.
Save Alexisvt/9eb22bb231bc8d0102d495bbb5695082 to your computer and use it in GitHub Desktop.
Sample tslint.json file for angular projects
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"quotemark": [true, "single"],
"trailing-comma": [false],
"only-arrow-functions": [false],
"no-console": [false],
"ordered-imports": [false],
"ban-types": [false],
"arrow-parens": [false],
"max-classes-per-file": [false]
},
"rulesDirectory": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment