1 # File containing whiteslist for lint errors
3 # ERROR TYPE:file/name/pattern[:line number]
5 # TRAILING WHITESPACE:example/file.html:128
6 # to allow trailing whitespace on example/file.html line 128
8 ## Whitespace rules that we can't enforce yet ##
10 TRAILING WHITESPACE:*.md
11 TRAILING WHITESPACE:*.txt
12 TRAILING WHITESPACE:*.frag
13 TRAILING WHITESPACE:*.vert
15 ## Accept executable permission ##
17 UNNECESSARY EXECUTABLE PERMISSION:*.cgi
18 UNNECESSARY EXECUTABLE PERMISSION:.git/*
19 # Pylint doesn't seem to understand symlinks properly
20 UNNECESSARY EXECUTABLE PERMISSION:specs/1.0
21 UNNECESSARY EXECUTABLE PERMISSION:specs/2.0
23 ## Ignore INDENT TABS ##
27 #The original dEQP tests used tabs throughout.
28 INDENT TABS:deqp/functional/gles3/*.js
29 INDENT TABS:conformance-suites/2.0.0/deqp/functional/gles3/*.js
31 ## Two files in the repository deliberately contain non-UTF-8 Unicode,
32 ## which Python can't decode by default. Skip the content checks for
35 INVALID UNICODE:conformance/glsl/misc/non-ascii-comments.vert.html
36 INVALID UNICODE:conformance/glsl/misc/non-ascii.vert.html
38 ## File types that should never be checked ##