mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #21726 - atouchet:tidy, r=asajeffrey
More servo-tidy.toml cleanup <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21726) <!-- Reviewable:end -->
This commit is contained in:
commit
1e1eca07ed
1 changed files with 7 additions and 10 deletions
|
@ -13,23 +13,20 @@ lint-scripts = [
|
||||||
# For each blocked package, we can list the exceptions,
|
# For each blocked package, we can list the exceptions,
|
||||||
# which are packages allowed to use the blocked package.
|
# which are packages allowed to use the blocked package.
|
||||||
[blocked-packages]
|
[blocked-packages]
|
||||||
|
num = []
|
||||||
rand = [
|
rand = [
|
||||||
"crossbeam-channel", # Used to initialize a thread-local
|
"crossbeam-channel", # Used to initialize a thread-local
|
||||||
"gaol",
|
"gaol",
|
||||||
"hashglobe", # only uses in tests
|
"hashglobe", # Only used in tests
|
||||||
"ipc-channel",
|
"ipc-channel",
|
||||||
"parking_lot_core",
|
"parking_lot_core",
|
||||||
"phf_generator",
|
"phf_generator",
|
||||||
"rayon",
|
"rand",
|
||||||
"rayon-core",
|
"rayon-core",
|
||||||
"servo_rand",
|
"servo_rand",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"uuid",
|
"uuid",
|
||||||
"ws",
|
"ws",
|
||||||
"rand",
|
|
||||||
]
|
|
||||||
num = [
|
|
||||||
"chrono",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[ignore]
|
[ignore]
|
||||||
|
@ -39,15 +36,15 @@ packages = [
|
||||||
"crossbeam-epoch",
|
"crossbeam-epoch",
|
||||||
"crossbeam-utils",
|
"crossbeam-utils",
|
||||||
"log",
|
"log",
|
||||||
#TODO: remove num-rational when https://github.com/PistonDevelopers/image/pull/809 is merged.
|
# TODO: remove num-rational when https://github.com/PistonDevelopers/image/pull/809 is merged.
|
||||||
"num-rational",
|
"num-rational",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
"rand",
|
"rand",
|
||||||
"winapi",
|
|
||||||
# TODO: remove slab when #21426 lands
|
# TODO: remove slab when #21426 lands
|
||||||
"slab",
|
"slab",
|
||||||
"syn",
|
"syn",
|
||||||
"quote",
|
"winapi",
|
||||||
"proc-macro2",
|
|
||||||
]
|
]
|
||||||
# Files that are ignored for all tidy and lint checks.
|
# Files that are ignored for all tidy and lint checks.
|
||||||
files = [
|
files = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue