parent
15f44d60df
commit
b2fe246e62
|
@ -9,6 +9,7 @@ ratReport.txt
|
||||||
.settings
|
.settings
|
||||||
.checkstyle
|
.checkstyle
|
||||||
.factorypath
|
.factorypath
|
||||||
|
**/.editorconfig
|
||||||
**/derby.log
|
**/derby.log
|
||||||
|
|
||||||
# for native build
|
# for native build
|
||||||
|
|
|
@ -13,3 +13,9 @@ conflicts with [m2e](http://eclipse.org/m2e/).
|
||||||
# Idea
|
# Idea
|
||||||
|
|
||||||
If you completed the step described on [idea instructions](ide.md#style-templates-and-inspection-settings-for-idea), and selected the code style accordingly you should be ready to go.
|
If you completed the step described on [idea instructions](ide.md#style-templates-and-inspection-settings-for-idea), and selected the code style accordingly you should be ready to go.
|
||||||
|
|
||||||
|
# EditorConfig
|
||||||
|
|
||||||
|
For editors supporting [EditorConfig](http://editorconfig.org/), a settings file is provided in
|
||||||
|
etc/ide-settings/editorconfig.ini. Copy it to your Artemis top level directory and
|
||||||
|
[name it .editorconfig](http://editorconfig.org/#file-location)
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
# Copy to your Artemis top level dir and rename to .editorconfig
|
||||||
|
# http://editorconfig.org/#file-location
|
||||||
|
|
||||||
|
[*.{java,xml}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 3
|
||||||
|
tab_width = 3
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
1
pom.xml
1
pom.xml
|
@ -1269,6 +1269,7 @@
|
||||||
<exclude>**/.settings/**</exclude>
|
<exclude>**/.settings/**</exclude>
|
||||||
<exclude>**/.project</exclude>
|
<exclude>**/.project</exclude>
|
||||||
<exclude>**/.classpath</exclude>
|
<exclude>**/.classpath</exclude>
|
||||||
|
<exclude>**/.editorconfig</exclude>
|
||||||
<exclude>**/.checkstyle</exclude>
|
<exclude>**/.checkstyle</exclude>
|
||||||
<exclude>**/.factorypath</exclude>
|
<exclude>**/.factorypath</exclude>
|
||||||
<exclude>ratReport.txt</exclude>
|
<exclude>ratReport.txt</exclude>
|
||||||
|
|
Loading…
Reference in New Issue