mirror of
https://github.com/servo/servo.git
synced 2025-06-06 00:25:37 +00:00
96 lines
3 KiB
TOML
96 lines
3 KiB
TOML
[configs]
|
|
skip-check-length = false
|
|
skip-check-licenses = false
|
|
check-alphabetical-order = true
|
|
check-ordered-json-keys = [
|
|
"./resources/prefs.json",
|
|
]
|
|
lint-scripts = [
|
|
"./python/servo/lints/wpt_lint.py",
|
|
]
|
|
|
|
# Packages which we avoid using in Servo.
|
|
# For each blocked package, we can list the exceptions,
|
|
# which are packages allowed to use the blocked package.
|
|
[blocked-packages]
|
|
num = []
|
|
rand = [
|
|
"crossbeam-channel", # Used to initialize a thread-local
|
|
"gaol",
|
|
"hashglobe", # Only used in tests
|
|
"ipc-channel",
|
|
"parking_lot_core",
|
|
"phf_generator",
|
|
"servo_rand",
|
|
"smithay-client-toolkit",
|
|
"tempfile",
|
|
"tokio-threadpool",
|
|
"uuid",
|
|
"ws",
|
|
]
|
|
|
|
[ignore]
|
|
# Ignored packages with duplicated versions
|
|
packages = [
|
|
"crossbeam-deque",
|
|
"crossbeam-epoch",
|
|
"crossbeam-utils",
|
|
"rand",
|
|
"unicase",
|
|
"winapi",
|
|
]
|
|
# Files that are ignored for all tidy and lint checks.
|
|
files = [
|
|
"./components/net/tests/parsable_mime/text",
|
|
# Mako does not lend itself easily to splitting long lines
|
|
"./components/style/properties/helpers/animated_properties.mako.rs",
|
|
# Long regexes are long.
|
|
"./components/style/gecko/regen_atoms.py",
|
|
# Helper macro where actually a pseudo-element per line makes sense.
|
|
"./components/style/gecko/non_ts_pseudo_class_list.rs",
|
|
"./resources/hsts_preload.json",
|
|
"./tests/wpt/metadata/MANIFEST.json",
|
|
"./tests/wpt/mozilla/meta/MANIFEST.json",
|
|
"./tests/wpt/webgl/meta/MANIFEST.json",
|
|
"./support/android/openssl.sh",
|
|
"./support/linux/gstreamer/gstreamer.sh",
|
|
# Upstream code from Khronos/WebGL uses tabs for indentation
|
|
"./tests/wpt/webgl/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",
|
|
# Python 3 syntax causes "E901 SyntaxError" when flake8 runs in Python 2
|
|
"./etc/taskcluster/decision_task.py",
|
|
"./etc/taskcluster/decisionlib.py",
|
|
]
|
|
# Directories that are ignored for the non-WPT tidy check.
|
|
directories = [
|
|
# Upstream
|
|
"./support/android/apk",
|
|
"./support/magicleap/Servo2D/.vscode",
|
|
"./support/magicleap/Servo2D/code/inc.gen",
|
|
"./support/magicleap/Servo2D/code/src.gen",
|
|
"./support/magicleap/Servo2D/pipeline",
|
|
"./tests/wpt/harness",
|
|
"./tests/wpt/update",
|
|
"./tests/wpt/web-platform-tests",
|
|
"./tests/wpt/mozilla/tests/mozilla/referrer-policy",
|
|
"./tests/wpt/mozilla/tests/webgl",
|
|
"./tests/wpt/sync",
|
|
"./python/tidy/servo_tidy_tests",
|
|
"./components/script/dom/bindings/codegen/parser",
|
|
"./components/script/dom/bindings/codegen/ply",
|
|
"./python/_virtualenv",
|
|
"./components/hashglobe/src",
|
|
# Generated and upstream code combined with our own. Could use cleanup
|
|
"./target",
|
|
]
|
|
|
|
# Directories that are checked for correct file extension
|
|
[check_ext]
|
|
# directory, list of expected file extensions
|
|
"./components/script/dom/webidls" = [".webidl"]
|