Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.

Commit c41690d

Browse files
committed
Merge remote-tracking branch 'node-ts-sapling/master'
2 parents ed09cac + 959feab commit c41690d

File tree

3 files changed

+45
-5
lines changed

3 files changed

+45
-5
lines changed

package-lock.json

Lines changed: 40 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@
4444
"ts-node": "8.0.2",
4545
"tslint": "5.12.1",
4646
"tslint-config-airbnb": "5.11.1",
47+
"tslint-config-prettier": "1.18.0",
4748
"tslint-react": "3.6.0",
49+
"tsutils": "3.8.0",
4850
"typescript": "3.3.1"
4951
},
5052
"optionalDependencies": {},

tslint.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"defaultSeverity": "error",
3-
"extends": ["tslint-config-airbnb"],
3+
"extends": ["tslint-config-airbnb", "tslint-config-prettier"],
44
"jsRules": {},
55
"rules": {
66
"import-name": [false],
77
"max-line-length": [true, 120],
88
"variable-name": [true, "check-format", "allow-pascal-case", "allow-leading-underscore"],
99
"no-unused-variable": [true, { "ignore-pattern": "^_" }],
10-
"ter-arrow-parens": [true, "as-needed"]
10+
"ter-arrow-parens": [true, "as-needed"],
11+
"semicolon": false
1112
},
1213
"rulesDirectory": []
1314
}

0 commit comments

Comments
 (0)