diff options
author | Andy Clement <aclement@pivotal.io> | 2020-08-15 22:29:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-15 22:29:59 -0700 |
commit | 75edfaf6f96addfad1b7a912044f8639020b432f (patch) | |
tree | 5b1299dfb86ebdc0569a8b90870988e1322f3241 | |
parent | 48522f987fb2247a190c842e871edd70ff63df2b (diff) | |
parent | 71d2ce678f653f93d5cfebc9f442c956d45fa1d6 (diff) | |
download | aspectj-75edfaf6f96addfad1b7a912044f8639020b432f.tar.gz aspectj-75edfaf6f96addfad1b7a912044f8639020b432f.zip |
Merge pull request #11 from larsgrefer/feature/editorconfig
Add a basic .editorconfig file
-rw-r--r-- | .editorconfig | 20 |
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 |