Skip to content

Instantly share code, notes, and snippets.

@sirtimbly
Created December 15, 2018 03:38
Show Gist options
  • Save sirtimbly/be21094a496548a36ddb62011d840b92 to your computer and use it in GitHub Desktop.
Save sirtimbly/be21094a496548a36ddb62011d840b92 to your computer and use it in GitHub Desktop.
tslint for a design system project including legacy code
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"rules": {
"quotemark": [true, "double"],
"indent": [true, "spaces", 2],
"interface-name": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-consecutive-blank-lines": false,
"no-reference": false,
"only-arrow-functions": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"trailing-comma": false,
"radix": false
},
"linterOptions": {
"exclude": [
"src/stories/**"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment