Skip to content

Instantly share code, notes, and snippets.

@devCola
Created June 30, 2018 09:35
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 devCola/f5db8659e7ee58d56635e4435e2ca5b2 to your computer and use it in GitHub Desktop.
Save devCola/f5db8659e7ee58d56635e4435e2ca5b2 to your computer and use it in GitHub Desktop.
tslint-1
{
"extends": "tslint-microsoft-contrib",
"rules": {
"completed-docs": false,
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": {
"functions": "ignore",
"objects": "always"
}
}
],
"encoding": true,
"missing-jsdoc": false,
"no-require-imports": false,
"no-relative-imports": false,
"no-implicit-dependencies": false,
"no-var-requires": false,
"no-submodule-imports": false,
"typedef": false,
"no-single-line-block-comment": false,
"no-any": false,
"no-console": false,
"no-multiline-string": false,
"no-http-string": false,
"no-parameter-properties": false,
"export-name": false,
"import-name": false,
"prefer-type-cast": false,
"no-angle-bracket-type-assertion": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment