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 779dc68 commit a19d41bCopy full SHA for a19d41b
2 files changed
.distignore
@@ -1,6 +1,7 @@
1
# Git
2
.git
3
.gitignore
4
+.editorconfig
5
6
# GitHub
7
.github
.editorconfig
@@ -0,0 +1,21 @@
+# This file is for unifying the coding style for different editors and IDEs
+# editorconfig.org
+#
+# WordPress Coding Standards
+# https://make.wordpress.org/core/handbook/coding-standards/
+
+root = true
8
9
+[*]
10
+charset = utf-8
11
+end_of_line = lf
12
+insert_final_newline = true
13
+trim_trailing_whitespace = true
14
+indent_style = tab
15
16
+[*.yml]
17
+indent_style = space
18
+indent_size = 2
19
20
+[*.md]
21
+trim_trailing_whitespace = false
0 commit comments