Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TSLint and fix issues #91

Merged
merged 4 commits into from
Jun 16, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
tslint: Adjust enabled rules
  • Loading branch information
Turbo87 committed Jun 16, 2018

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 9a90153c44cfbeaf5c9c4d15a495472dcfbff331
17 changes: 15 additions & 2 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
"tslint:recommended"
],
"jsRules": {},
"rules": {},
"rules": {
"arrow-parens": false,
"curly": false,
"interface-name": false,
"no-string-literal": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-const": false,
"quotemark": {
"options": "double"
}
},
"rulesDirectory": []
}
}