-
Notifications
You must be signed in to change notification settings - Fork 17
/
lint_blacklist.txt
39 lines (32 loc) · 1.1 KB
/
lint_blacklist.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# ----------------------------------------------------------------------
# AN EXAMPLE BLACKLIST FILE
# This file will be used when linting changes to files in this directory,
# but also provides an example of what blacklist files should look like,
# so it contains a few extra entries for illustration.
# ----------------------------------------------------------------------
# All filenames are taken to be relative to the directory containing
# this file.
#
# NOTE: These entries are normal glob patterns, with the addition that
# '**' means 'any number of directories here' (including 0,
# so **/foo matches 'foo', 'a/foo', 'a/b/foo', etc.)
# Source control directories
.hg
.git
# Autogenerated code
**/compressed.js
**/hashed-*.js
# Third party code (trailing / is for human-readability that this is a dir)
closure_linter/
node_modules/
vendor/
six.py
# Kinda third-party code
contrib/
# Other files
main.py
api/v1.py
# Bitrise yml files in mobile repo contain unicode not supported by "narrow"
# python. Hopefully we can remove this if python3 upgrade fixes the issue.
bitrise.yml
.bitrise/workflow_archives/**