mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
b320aa695c
MANUAL PUSH: bustage
42 lines
980 B
TOML
42 lines
980 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",
|
|
|
|
# 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",
|
|
]
|