aboutsummaryrefslogtreecommitdiffstats
path: root/servo-tidy.toml
blob: 55357dfe1ce2f6f957bbad557f24018e662560a4 (plain) (blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[configs]
skip-check-length = false
skip-check-licenses = false
check-ordered-json-keys = [
  "./resources/prefs.json",
]
lint-scripts = [
  "./python/servo/lints/wpt_lint.py",
]

# Packages which we avoid using in Servo.
# For each blocked package, we can list the exceptions,
# which are packages allowed to use the blocked package.
[blocked-packages]
rand = [
  "deque",
  "gaol",
  "ipc-channel",
  "num-bigint",
  "parking_lot_core",
  "phf_generator",
  "rayon",
  "rayon-core",
  "servo_rand",
  "servo-websocket",
  "tempdir",
  "tempfile",
  "uuid",
  "ws",
]
num = []

[ignore]
# Ignored packages with duplicated versions
packages = [
  "bitflags",
  "libloading", # Conflicting version is only used at build-time by geckolib.
]
# Files that are ignored for all tidy and lint checks.
files = [
  # Helper macro where actually a pseudo-element per line makes sense.
  "./components/style/gecko/non_ts_pseudo_class_list.rs",
  # Generated and upstream code combined with our own. Could use cleanup
  "./components/style/gecko/generated/bindings.rs",
  "./components/style/gecko/generated/structs_debug.rs",
  "./components/style/gecko/generated/structs_release.rs",
  "./components/style/gecko/generated/atom_macro.rs",
  "./resources/hsts_preload.json",
  "./tests/wpt/metadata/MANIFEST.json",
  "./tests/wpt/metadata-css/MANIFEST.json",
  "./components/script/dom/webidls/ForceTouchEvent.webidl",
  "./support/android/openssl.sh",
  # Ignore those files since the issues reported are on purpose
  "./tests/html/bad-line-ends.html",
  "./tests/unit/net/parsable_mime/text",
  "./tests/wpt/mozilla/tests/css/fonts",
  "./tests/wpt/mozilla/tests/css/pre_with_tab.html",
  "./tests/wpt/mozilla/tests/mozilla/textarea_placeholder.html",
]
# Directories that are ignored for the non-WPT tidy check.
directories = [
  # Upstream
  "./support/android/apk",
  "./tests/wpt/css-tests",
  "./tests/wpt/harness",
  "./tests/wpt/update",
  "./tests/wpt/web-platform-tests",
  "./tests/wpt/mozilla/tests/mozilla/referrer-policy",
  "./tests/wpt/sync",
  "./tests/wpt/sync_css",
  "./python/tidy/servo_tidy_tests",
  "./components/script/dom/bindings/codegen/parser",
  "./components/script/dom/bindings/codegen/ply",
  "./python/_virtualenv",
  # Generated and upstream code combined with our own. Could use cleanup
  "./target",
  "./ports/cef",
  "./components/style/gecko_bindings/nsstring_vendor/",
]

# Directories that are checked for correct file extension
[check_ext]
# directory, list of expected file extensions
"./components/script/dom/webidls" = [".webidl"]