Bug 1857841 - pt 3. Add a new page kind named "fresh" r=glandium
[gecko.git] / gfx / wr / servo-tidy.toml
blob442c407fcaa76b258c1c9a80ce4e787381f671d4
1 [configs]
2 skip-check-length = false
3 skip-check-licenses = false
4 check-alphabetical-order = false
6 [ignore]
7 # Ignored packages with duplicated versions
8 packages = [
9     # transition to bitflags 2 is underway.
10     "bitflags",
11     "cfg-if",
12     "core-foundation",
13     "core-foundation-sys",
14     "core-graphics",
15     # requires a new version of font-loader, see https://github.com/matprec/rust-font-loader/pull/36
16     "core-text",
17     # requires updating winit to v0.28 and glutin to v0.30 (to get rid of cocoa v0.24)
18     # AND also requires bumping the core-graphics dependency of winit (not present in v0.28)
19     "foreign-types",
20     "foreign-types-shared",
21     "gl_generator",
22     # Internal dependencies of glsl-lang (only used in wrench) require different versions.
23     "hashbrown",
24     # glsl requires 5.1, and xcursor (required by winit) requires 7.1.
25     # when a version of glsl depending on 7.1 is published we can update.
26     "nom",
27     # glsl-lang requires 0.12.1, and glutin requires 0.11.2
28     "parking_lot",
29     "parking_lot_core",
30     "rand",
31     "rand_core",
32     # transition to syn 2 is underway.
33     "syn",
34     "synstructure",
35     # Can be fixed by removing time dependency - see bug 1765324
36     "wasi",
39 # Files that are ignored for all tidy and lint checks.
40 files = [
41     "./wrench/src/egl.rs",  # Copied from glutin
44 # Many directories are currently ignored while we tidy things up
45 # gradually.
46 directories = [
47    # Generated and upstream code combined with our own. Could use cleanup
48   "./target",
49   "./webrender/src",