forked from servo/webrender
-
Notifications
You must be signed in to change notification settings - Fork 7
/
servo-tidy.toml
41 lines (37 loc) · 980 Bytes
/
servo-tidy.toml
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
40
41
[configs]
skip-check-length = false
skip-check-licenses = false
check-alphabetical-order = false
[ignore]
# Ignored packages with duplicated versions
packages = [
"crossbeam-utils",
"gl_generator",
"lazy_static",
"percent-encoding",
"rand",
"rand_core",
"winapi",
"core-graphics",
"core-text",
"yaml-rust",
# These are tracked in bug 1587468, see there for pending work.
"syn",
"quote",
"unicode-xid",
"synstructure",
"proc-macro2",
]
# Files that are ignored for all tidy and lint checks.
files = [
"./wrench/src/egl.rs", # Copied from glutin
"./ci-scripts/wrupdater/converter.py", # servo-tidy doesn't like python3
"./ci-scripts/wrupdater/read-json.py", # servo-tidy doesn't like python3
]
# Many directories are currently ignored while we tidy things up
# gradually.
directories = [
# Generated and upstream code combined with our own. Could use cleanup
"./target",
"./webrender/src",
]