Skip to content

Commit cef39c7

Browse files
committed
Change max_line_length to 120
Add .eslintrc file Update README.md
1 parent a6a6f4b commit cef39c7

File tree

3 files changed

+495
-476
lines changed

3 files changed

+495
-476
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ trim_trailing_whitespace = true
88
insert_final_newline = true
99
end_of_line = lf
1010
# editorconfig-tools is unable to ignore longs strings or urls
11-
max_line_length = null
11+
max_line_length = 120

.eslintrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"extends": "airbnb",
3+
"rules": {
4+
"comma-dangle": [
5+
"error",
6+
{
7+
"arrays": "never",
8+
"objects": "never",
9+
"imports": "never",
10+
"exports": "never",
11+
"functions": "ignore"
12+
}
13+
]
14+
}
15+
}

0 commit comments

Comments
 (0)