We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9318ccc commit b330602Copy full SHA for b330602
.editorconfig
@@ -0,0 +1,18 @@
1
+# https://editorconfig.org
2
+root = true
3
+
4
+[*]
5
+charset = utf-8
6
+end_of_line = lf
7
+indent_size = 2
8
+indent_style = space
9
+insert_final_newline = true
10
+max_line_length = 80
11
+trim_trailing_whitespace = true
12
13
+[*.md]
14
+max_line_length = 0
15
+trim_trailing_whitespace = false
16
17
+[COMMIT_EDITMSG]
18
.eslintignore
@@ -1,8 +1,11 @@
# don't ever lint node_modules
node_modules
+**/node_modules
# don't lint build output (make sure it's set to your correct build folder name)
-dist
+dist/
# don't lint nyc coverage output
-coverage
+build/
+coverage/
+fixtures/
.gitattributes
@@ -0,0 +1 @@
+* text=auto
0 commit comments