diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /gfx/wr/servo-tidy.toml | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/wr/servo-tidy.toml')
-rw-r--r-- | gfx/wr/servo-tidy.toml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gfx/wr/servo-tidy.toml b/gfx/wr/servo-tidy.toml new file mode 100644 index 0000000000..5956ea580e --- /dev/null +++ b/gfx/wr/servo-tidy.toml @@ -0,0 +1,33 @@ +[configs] +skip-check-length = false +skip-check-licenses = false +check-alphabetical-order = false + +[ignore] +# Ignored packages with duplicated versions +packages = [ + "cfg-if", + "core-foundation", + "core-foundation-sys", + "core-graphics", + "gl_generator", + # glsl requires 5.1, and xcursor (required by winit) requires 7.1. + # when a version of glsl depending on 7.1 is published we can update. + "nom", + "rand_core", + # Can be fixed by removing time dependency - see bug 1765324 + "wasi", +] + +# Files that are ignored for all tidy and lint checks. +files = [ + "./wrench/src/egl.rs", # Copied from glutin +] + +# 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", +] |