Skip to content

Commit 88ee0e1

Browse files
committed
Update column limit.
1 parent c8a49ce commit 88ee0e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ module.exports = {
8585
{
8686
// Optional rules
8787
'max-len': [2, {
88-
code: 80,
88+
code: 120,
8989
tabWidth: 2,
9090
ignoreUrls: true,
9191
ignoreTemplateLiterals: true,

tools/check_tidy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def parse_option():
4444

4545
class StyleChecker(object):
4646

47-
column_limit = 80
47+
column_limit = 120
4848

4949
def __init__(self):
5050
self.count_lines = 0

0 commit comments

Comments
 (0)