summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.editorconfig6
-rw-r--r--.jsbeautifyrc6
-rw-r--r--.prettierrc6
3 files changed, 18 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..3a76da0
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,6 @@
+[*]
+charset = utf-8
+indent_style = tabs
+insert_final_newline = true
+trim_trailing_whitespace = true
+end_of_line = lf
diff --git a/.jsbeautifyrc b/.jsbeautifyrc
new file mode 100644
index 0000000..bc9ebe9
--- /dev/null
+++ b/.jsbeautifyrc
@@ -0,0 +1,6 @@
+{
+ "indent_with_tabs": true,
+ "end_with_newline": true,
+ "space_after_anon_function": true,
+ "keep_array_indentation": true
+}
diff --git a/.prettierrc b/.prettierrc
new file mode 100644
index 0000000..bfc1911
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,6 @@
+{
+ "arrowParens": "avoid",
+ "printWidth": 120,
+ "semi": false,
+ "useTabs": true
+}