diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2017-04-05 01:46:38 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2017-04-05 01:46:38 +0200 |
commit | fdf1e942688ba5d8a5525347d040446f8542a7b6 (patch) | |
tree | 22a3639df7e86627133dc67367e11936704e9a34 /backend | |
parent | First draft of Jsondoc documentation generation (diff) | |
download | seven-wonders-fdf1e942688ba5d8a5525347d040446f8542a7b6.tar.gz seven-wonders-fdf1e942688ba5d8a5525347d040446f8542a7b6.tar.bz2 seven-wonders-fdf1e942688ba5d8a5525347d040446f8542a7b6.zip |
Remove line wrapping indentation checkstyle constraint
This constraint is a bit too strict because it prevents nice alignment of wrapped chained method calls or wrapped annotation parameters.
Diffstat (limited to 'backend')
-rw-r--r-- | backend/config/checkstyle/checkstyle.xml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backend/config/checkstyle/checkstyle.xml b/backend/config/checkstyle/checkstyle.xml index 5722bd78..5c511415 100644 --- a/backend/config/checkstyle/checkstyle.xml +++ b/backend/config/checkstyle/checkstyle.xml @@ -17,7 +17,6 @@ <property name="basicOffset" value="4"/> <property name="braceAdjustment" value="0"/> <property name="arrayInitIndent" value="8"/> - <property name="lineWrappingIndentation" value="8"/> </module> <module name="LineLength"> <property name="max" value="121"/> @@ -110,4 +109,4 @@ <property name="ignoreMethodNamesRegex" value=".*Property"/> </module> </module> -</module>
\ No newline at end of file +</module> |