mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Instead of parsing the `Cargo.lock` file directly in `tidy.py`. Use `cargo-deny`, which we already use to detect unapproved licenses in the dependency chain to detect duplicate and banned crates. In addition, enable all other `cargo-deny` checks and add exceptions where necessary for them. This depends on the latest release of `cargo-deny` which depends on a recent verison of `rust`. Fixes #34393. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
62 lines
2.3 KiB
TOML
62 lines
2.3 KiB
TOML
[configs]
|
|
skip-check-length = false
|
|
skip-check-licenses = false
|
|
check-alphabetical-order = true
|
|
check-ordered-json-keys = ["./resources/prefs.json"]
|
|
|
|
[ignore]
|
|
# Files that are ignored for all tidy and lint checks.
|
|
files = [
|
|
"./components/net/tests/parsable_mime/text",
|
|
"./resources/hsts_preload.json",
|
|
"./tests/wpt/meta/MANIFEST.json",
|
|
"./tests/wpt/meta-legacy-layout/MANIFEST.json",
|
|
"./tests/wpt/mozilla/meta/MANIFEST.json",
|
|
"./tests/wpt/mozilla/meta-legacy-layout/MANIFEST.json",
|
|
# Long encoded string
|
|
"./tests/wpt/mozilla/tests/mozilla/resources/brotli.py",
|
|
"./tests/wpt/webgl/meta/MANIFEST.json",
|
|
# Upstream code from Khronos/WebGL uses tabs for indentation
|
|
"./tests/wpt/webgl/tests",
|
|
# Vendored from upstream
|
|
"./tests/wpt/webgpu/tests",
|
|
# Our import script is not currently respecting the lint.
|
|
"./tests/wpt/webgl/tools/import-conformance-tests.py",
|
|
# Ignore those files since the issues reported are on purpose
|
|
"./tests/html/bad-line-ends.html",
|
|
"./tests/wpt/mozilla/tests/css/fonts",
|
|
"./tests/wpt/mozilla/tests/css/pre_with_tab.html",
|
|
"./tests/wpt/mozilla/tests/mozilla/textarea_placeholder.html",
|
|
# The tidy tests currently don't pass tidy.
|
|
"./python/tidy/test.py",
|
|
]
|
|
# Directories that are ignored for the non-WPT tidy check.
|
|
directories = [
|
|
# Test have expectations in them, causing tidy to fail.
|
|
"./support/crown/tests",
|
|
# Upstream
|
|
"./support/android/apk",
|
|
"./tests/wpt/harness",
|
|
"./tests/wpt/tests",
|
|
"./tests/wpt/mozilla/tests/mozilla/referrer-policy",
|
|
"./tests/wpt/mozilla/tests/webgl",
|
|
"./python/tidy/tests",
|
|
"./python/_v*",
|
|
"./python/mach",
|
|
# Generated and upstream code combined with our own. Could use cleanup
|
|
"./target",
|
|
"./support/crown/target",
|
|
"./third_party",
|
|
# Cache files generated by wptrunner which fail the EOF newlines check.
|
|
"./tests/wpt/meta/.cache",
|
|
"./tests/wpt/meta-legacy-layout/.cache",
|
|
"./tests/wpt/mozilla/meta/.cache",
|
|
"./tests/wpt/mozilla/meta-legacy-layout/.cache",
|
|
"./tests/wpt/webgl/meta/.cache",
|
|
"./tests/wpt/webgl/meta-legacy-layout/.cache",
|
|
]
|
|
|
|
# Directories that are checked for correct file extension
|
|
[check_ext]
|
|
# directory, list of expected file extensions
|
|
"./components/script/dom/webidls" = [".webidl", "noidl"]
|