Skip to content

Commit 394ae32

Browse files
committed
Fix lint
1 parent f84e4e8 commit 394ae32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"coverage": "jest --coverage",
1010
"posttest": "npm run lint",
1111
"prelint": "npm run clean",
12-
"lint": "tslint --type-check --project tsconfig.json --format codeFrame --exclude test/**/*.tsx",
12+
"lint": "tslint --project tsconfig.json --format codeFrame --exclude test/**/*.tsx",
1313
"prepublish": "npm run build",
1414
"clean": "rm -rf dist",
1515
"prebuild": "npm run clean",

tslint.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"defaultSeverity": "warning",
66
"rules": {
77
"quotemark": [true, "single", "avoid-escape"],
8-
"max-line-length": [true, 120],
8+
"max-line-length": [false],
99
"indent": ["error", 4],
1010
"only-arrow-functions": [false],
1111
// Disabled rules

0 commit comments

Comments
 (0)