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.
2 parents 8279deb + 534d080 commit 792e65dCopy full SHA for 792e65d
.editorconfig
@@ -0,0 +1,12 @@
1
+# EditorConfig is awesome: https://EditorConfig.org
2
+
3
+# top-most EditorConfig file
4
+root = true
5
6
+[*]
7
+indent_style = space
8
+indent_size = 2
9
+end_of_line = lf
10
+charset = utf-8
11
+trim_trailing_whitespace = true
12
+insert_final_newline = true
.prettierrc.js
@@ -0,0 +1,11 @@
+module.exports = {
+ arrowParens: "avoid",
+ printWidth: 120,
+ singleQuote: true,
+ semi: true,
+ endOfLine: "lf",
+ tabWidth: 2,
+ bracketSpacing: true,
+ trailingComma: "es5",
+};
0 commit comments