Skip to content

Commit 81644f3

Browse files
authored
Add max line length of 120 to linter (github#1524)
1 parent 9ab6aa6 commit 81644f3

12 files changed

+24
-11
lines changed

.eslintrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@
3333
"alphabetize": {"order": "asc"},
3434
"newlines-between": "always"
3535
}],
36+
"max-len": ["error", {
37+
"code": 120,
38+
"ignoreUrls": true,
39+
"ignoreStrings": true,
40+
"ignoreTemplateLiterals": true
41+
}],
3642
"no-async-foreach/no-async-foreach": "error",
3743
"no-console": "off",
3844
"no-sequences": "error",

lib/config-utils.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/config-utils.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/upload-lib.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)