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

Commit 8a2798c

Browse files
committed
Merge remote-tracking branch 'node-aws-lambda-sapling/master'
2 parents a22e605 + c41690d commit 8a2798c

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
@@ -49,7 +49,9 @@
4949
"ts-node": "8.0.2",
5050
"tslint": "5.12.1",
5151
"tslint-config-airbnb": "5.11.1",
52+
"tslint-config-prettier": "1.18.0",
5253
"tslint-react": "3.6.0",
54+
"tsutils": "3.8.0",
5355
"typescript": "3.3.1"
5456
},
5557
"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)