View Javadoc
1   /*
2   LineLength
3   fileExtensions = (default)all files
4   ignorePattern = (default)^(package|import) .*
5   max = 100
6   
7   
8   */
9   
10  package com.puppycrawl.tools.checkstyle.checks.sizes.linelength;
11  
12  public class InputLineLengthUnicodeChars {
13      String aaaaaaa = "1234567890123456789012345678901234567890" + "1234567890123456789012345" + "_";
14      String aaaaaab = "1234567890123456789012345678901234567890" + "1234567890123456789012345" + "💩";
15      String aaaaaac = "This line is too long, and will be reported by checkstyle.  This line is 137 characters long, excluding unicode."; // violation
16      String aaaaaad = "This line is too long, and will be reported by checkstyle.💩💩This line is 137 characters long, including unicode."; // violation
17  }