summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-07-04 08:56:51 -0400
committerLibravatar GitHub <noreply@github.com>2016-07-04 08:56:51 -0400
commit33abcd9573155d36f8a40936d06a44704287a99b (patch)
tree88f1862e467782c7904097358e04387fa2ed4a1e
parentMerge pull request #732 from zandrmartin/set-size-command (diff)
parentCreate .editorconfig (diff)
downloadsway-33abcd9573155d36f8a40936d06a44704287a99b.tar.gz
sway-33abcd9573155d36f8a40936d06a44704287a99b.tar.zst
sway-33abcd9573155d36f8a40936d06a44704287a99b.zip
Merge pull request #734 from jplatte/patch-1
Create .editorconfig
-rw-r--r--.editorconfig22
1 files changed, 22 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..a1c73fe4
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,22 @@
1# For the full list of code style requirements, see CONTRIBUTING.md
2
3root = true
4
5[*]
6charset = utf-8
7end_of_line = lf
8
9[*.{c,h,cmake,txt}]
10indent_style = tab
11indent_size = 4
12
13[*.{xml,yml}]
14indent_style = space
15indent_size = 2
16
17[config]
18indent_style = space
19indent_size = 4
20
21[*.md]
22trim_trailing_whitespace = false