We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b404c5 commit 08793e2Copy full SHA for 08793e2
.editorconfig
@@ -0,0 +1,18 @@
1
+# editorconfig.org
2
+root = true
3
+
4
+[*]
5
+end_of_line = lf
6
+charset = utf-8
7
+trim_trailing_whitespace = true
8
+insert_final_newline = true
9
+indent_style = space
10
+indent_size = 4
11
12
+[*.{md,markdown}]
13
+# Allow <br/> from Markdown
14
+trim_trailing_whitespace = false
15
+indent_size = 2
16
17
+[*.json]
18
.eslintrc.json
@@ -0,0 +1,15 @@
+{
+ "ecmaVersion": 5,
+ "sourceType": "module",
+ "impliedStrict": true,
+ "ecmaFeatures":{},
+ "env":{
+ "node": true,
+ "browser": true
+ },
+ "extends":"eslint:recommended",
+ "rules":{
+ "semi": [2, "always"],
+ "indent": ["error"]
+ }
+}
0 commit comments