From c24540c17cfbc2b937802102a44bfb5ddebfd36c Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 4 Sep 2016 22:30:28 +0100 Subject: [PATCH] LineLength: set max to 120 Widescreen monitor are more common, and this is the default for IntelliJ. Removing the TODO note about ignoring Javadoc blocks as this is less urget now with the 150% width increase. --- README.md | 4 +--- src/main/resources/net/kemitix/checkstyle.xml | 4 +++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b43609a..9282508 100644 --- a/README.md +++ b/README.md @@ -1289,12 +1289,10 @@ class Bar #### [LineLength](http://checkstyle.sourceforge.net/config_sizes.html#LineLength) -Limits the line length to 80 characters. +Limits the line length to 120 characters. Doesn't check package or import lines. -> TODO: ignorePattern = "^\s\\* .+" exclude javadoc blocks - #### [LocalFinalVariableName](http://checkstyle.sourceforge.net/config_naming.html#LocalFinalVariableName) Checks the format of local, `final` variable names, including `catch` parameters. diff --git a/src/main/resources/net/kemitix/checkstyle.xml b/src/main/resources/net/kemitix/checkstyle.xml index c9be749..fec0bb4 100644 --- a/src/main/resources/net/kemitix/checkstyle.xml +++ b/src/main/resources/net/kemitix/checkstyle.xml @@ -100,7 +100,9 @@ - + + +