View Javadoc
1   /*
2   TrailingComment
3   format = (default)^[\s});]*$
4   legalComment = \\$NON-NLS
5   
6   
7   */
8   package com.puppycrawl.tools.checkstyle.checks.trailingcomment;
9   
10  public class InputTrailingCommentWithNoPrecedingWhitespace {
11      public static void main(String[] args) {
12          System.out.println("foo"); //$NON-NLS-1$
13      }                              // ok ^
14  }