Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
engines:
tslint:
enabled: true
config: tslint.yml
config: tslint.json
shellcheck:
enabled: true
duplication:
Expand Down
12 changes: 12 additions & 0 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": [
"tslint-config-airbnb",
"tslint-config-prettier"
],
"rules": {
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"],
"object-shorthand-properties-first": false,
"max-line-length": [true, { "limit": 100, "ignore-pattern": "`[^`]+`" }],
"import-name": false
}
}
8 changes: 0 additions & 8 deletions tslint.yml

This file was deleted.