Skip to content

Commit

Permalink
editor: increase max line length to 120
Browse files Browse the repository at this point in the history
Reduce the excessive wrapping of lines.

Signed-off-by: Chris. Webster <[email protected]>
  • Loading branch information
webstech committed Jan 11, 2022
1 parent fad8c49 commit ee286d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ charset = utf-8
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
max_line_length = 80
max_line_length = 120
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ module.exports = {
"max-len": [
"error",
{
"code": 80
"code": 120
}
],
"new-parens": "error",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"editor.wordWrapColumn": 120,
"files.trimTrailingWhitespace": true
},
"markdownlint.config": {
Expand Down

0 comments on commit ee286d1

Please sign in to comment.