mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
9c34641992
https://github.com/servo/webrender/pull/3736 Differential Revision: https://phabricator.services.mozilla.com/D46309 --HG-- extra : moz-landing-system : lando
35 lines
829 B
TOML
35 lines
829 B
TOML
[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",
|
|
]
|
|
|
|
# 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",
|
|
]
|