aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy/tidy.py
Commit message (Collapse)AuthorAgeFilesLines
* No extern crate test/tidy & better RUSTFLAGS handling in mach (#30328)Samson2023-09-101-17/+0
| | | | | | | | | | | * Remove unused extern crate rustflag * Remove tidy check alphabetical order of extern crates rustfmt's reorder_imports already does that * fix * better RUSTFLAGS handling
* Rename ports/winit package to servoshell (#30163)Atbrakhi2023-08-281-3/+3
| | | | | * rename winit package to servoshell * revert previous changes and rename only package
* Remove the YAML tidy code (#30004)Martin Robinson2023-07-181-68/+4
| | | | | | | | | This code was used to test buildbox_steps.yml, but Servo no longer uses buildbot, so this code is essentially unused. In addition, YAML + Cython 3 is causing issues on the CI. Fixes #30003 Signed-off-by: Martin Robinson <mrobinson@igalia.com>
* Enable the GitHub merge queue (#29989)Martin Robinson2023-07-131-1/+1
| | | Signed-off-by: Martin Robinson <mrobinson@igalia.com>
* Update scripts to reflect new WPT directory nameMartin Robinson2023-06-261-4/+4
|
* Standalone Flake8 configsagudev2023-06-231-7/+1
|
* Convert tidy to a non-egg Python packageMartin Robinson2023-06-151-0/+1172
It seems that servo-tidy is only used by webrender in my GitHub searches. WebRender could simply use `rustfmt` and the tidy on pypi hasn't been updated since 2018. Converting tidy to a normal Python package removes the maintenance burden of continually fixing the easy install configuration. Fixes #29094. Fixes #29334.