aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Clement <aclement@pivotal.io>2020-08-15 22:29:59 -0700
committerGitHub <noreply@github.com>2020-08-15 22:29:59 -0700
commit75edfaf6f96addfad1b7a912044f8639020b432f (patch)
tree5b1299dfb86ebdc0569a8b90870988e1322f3241
parent48522f987fb2247a190c842e871edd70ff63df2b (diff)
parent71d2ce678f653f93d5cfebc9f442c956d45fa1d6 (diff)
downloadaspectj-75edfaf6f96addfad1b7a912044f8639020b432f.tar.gz
aspectj-75edfaf6f96addfad1b7a912044f8639020b432f.zip
Merge pull request #11 from larsgrefer/feature/editorconfig
Add a basic .editorconfig file
-rw-r--r--.editorconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 000000000..e1a90164c
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,20 @@
+# EditorConfig is awesome: https://EditorConfig.org
+
+# top-most EditorConfig file
+root = true
+
+# Unix-style newlines with a newline ending every file
+[*]
+end_of_line = lf
+insert_final_newline = true
+
+[*.yml]
+indent_style = space
+indent_size = 2
+
+[*.xml]
+trim_trailing_whitespace = true
+
+[*.{java,aj}]
+charset = utf-8
+trim_trailing_whitespace = true