We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6a6f4b commit cef39c7Copy full SHA for cef39c7
.editorconfig
@@ -8,4 +8,4 @@ trim_trailing_whitespace = true
8
insert_final_newline = true
9
end_of_line = lf
10
# editorconfig-tools is unable to ignore longs strings or urls
11
-max_line_length = null
+max_line_length = 120
.eslintrc
@@ -0,0 +1,15 @@
1
+{
2
+ "extends": "airbnb",
3
+ "rules": {
4
+ "comma-dangle": [
5
+ "error",
6
+ {
7
+ "arrays": "never",
+ "objects": "never",
+ "imports": "never",
+ "exports": "never",
+ "functions": "ignore"
12
+ }
13
+ ]
14
15
+}
0 commit comments