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 3a13ce6 commit 25283b5Copy full SHA for 25283b5
.editorconfig
@@ -0,0 +1,15 @@
1
+# http://editorconfig.org
2
+root = true
3
+
4
+[*]
5
+indent_style = space
6
+indent_size = 4
7
+charset = utf-8
8
+trim_trailing_whitespace = true
9
+insert_final_newline = true
10
11
+[*.md]
12
+trim_trailing_whitespace = false
13
14
+[*.elm]
15
+end_of_line = lf
prettier.config.js
@@ -0,0 +1,10 @@
+/* eslint-env node*/
+'use strict';
+module.exports = {
+ printWidth: 80,
+ useTabs: true,
+ tabWidth: 4,
+ trailingComma: 'es5',
+ singleQuote: true,
+};
0 commit comments