Skip to content

Commit 73f81ae

Browse files
committed
Add support for EditorConfig.
I need a definition of the basic coding style. EditorConfig is an IDE independent tool for this.
1 parent 36ff58d commit 73f81ae

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Configuration file for EditorConfig: http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_style = tab
8+
insert_final_newline = true
9+
tab_width = 4
10+
trim_trailing_whitespace = true
11+
12+
[travis.yml]
13+
indent_size = 2
14+
indent_style = space

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ want to contribute code than
4747
* Ensure that you didn't break the build by running `mvn test`.
4848
* Fork the repo and create a pull request. (See [Understanding the GitHub Flow](https://guides.github.com/introduction/flow/index.html))
4949

50+
The basic coding style is described in the
51+
[EditorConfig](http://editorconfig.org/) file `.editorconfig`.
52+
5053
Fishbowl supports [Travis CI](https://travis-ci.org/) for continuous
5154
integration. Your pull request will be automatically build by Travis
5255
CI.

0 commit comments

Comments
 (0)