Skip to content

Commit

Permalink
Create tslint.json
Browse files Browse the repository at this point in the history
tslint - Turn of variable-name

Update tslint.json

Update tslint.json

Update tslint.json
  • Loading branch information
aminya committed Apr 13, 2020
1 parent f191508 commit 7b3857d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions lib_src/tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"array-type": false,
"only-arrow-functions": false,
"ordered-imports": false,
"no-console": false,
"curly": false,
"variable-name": false,
"arrow-parens": false,
"object-literal-sort-keys": false,
"object-literal-shorthand": false
},
"rulesDirectory": []
}

0 comments on commit 7b3857d

Please sign in to comment.