mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 08:39:11 +00:00
e9c33534a6
Add rules for enforcing tabs in Java, and spaces in Ruby. Add a rule to make sure trailing whitespace is trimmed and that no new final newline is inserted.
13 lines
157 B
INI
13 lines
157 B
INI
root = true
|
|
|
|
[*]
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = false
|
|
|
|
[*.java]
|
|
indent_style=tab
|
|
tab_width=4
|
|
|
|
[*.rb]
|
|
indent_style=space
|
|
indent_size=2 |