Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@samwx
Created September 25, 2018 20:36
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 samwx/9b84af892144b04adcb960a8068c6202 to your computer and use it in GitHub Desktop.
Save samwx/9b84af892144b04adcb960a8068c6202 to your computer and use it in GitHub Desktop.
Node typescript lint file
{
"extends": [
"tslint:latest",
"tslint-config-prettier"
],
"rules": {
"no-any": false,
"ordered-imports": false,
"semicolon": [true, "always"],
"member-ordering": [
true,
{
"order": [
"public-static-field",
"private-static-field",
"instance-field",
"constructor",
"public-static-method",
"private-static-method"
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment