Skip to content

Instantly share code, notes, and snippets.

@Jason3S
Created October 19, 2016 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jason3S/2b93f58c2bf23e6ffa677729c538d651 to your computer and use it in GitHub Desktop.
Save Jason3S/2b93f58c2bf23e6ffa677729c538d651 to your computer and use it in GitHub Desktop.
Street Side Software tslint definition.
{
"extends": ["tslint:recommended"],
"rules": {
"class-name": true,
"interface-name": [
true,
"never-prefix"
],
"quotemark": [
true,
"single",
"jsx-double",
"avoid-escape"
],
"max-line-length": [
true,
140
],
"no-unused-variable": [true, "react"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment