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 1a25c82 commit 90f4f6cCopy full SHA for 90f4f6c
.editorconfig
@@ -0,0 +1,15 @@
1
+# https://editorconfig.org
2
+
3
+root = true
4
5
+[*]
6
+indent_style = space
7
+indent_size = 2
8
+charset = utf-8
9
+trim_trailing_whitespace = true
10
+insert_final_newline = true
11
+max_line_length = 80
12
+end_of_line = lf
13
14
+[*.md]
15
+trim_trailing_whitespace = false
.eslintrc.json
@@ -0,0 +1,13 @@
+{
+ "env": {
+ "browser": true,
+ "es2020": true,
+ "node": true
+ },
+ "extends": ["eslint:recommended", "prettier"],
+ "parserOptions": {
+ "ecmaVersion": 11,
+ "sourceType": "module"
+ "rules": {}
+}
0 commit comments