diff options
author | Jonathan Schwender <55576758+jschwe@users.noreply.github.com> | 2024-06-12 11:54:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-12 09:54:45 +0000 |
commit | fd472ebd0edc8eb91155b20e95ea9acfa6e77573 (patch) | |
tree | 357745d9283222d698cc80bf8ec931ff336f6dc3 /python/tidy/__init__.py | |
parent | 370fbf0331d73ae95ea29e67305aa86065c3604b (diff) | |
download | servo-fd472ebd0edc8eb91155b20e95ea9acfa6e77573.tar.gz servo-fd472ebd0edc8eb91155b20e95ea9acfa6e77573.zip |
Add cargo-deny to mach-tidy to check license compliance. (#32465)
* Use cargo-deny to check license compliance.
All licenses should be MPL-2.0 or weaker.
* Run cargo-deny check licenses in mach tidy
* fmt
* Fix inverted boolean
* Move cargo deny to tidy.py
* Add quotes around license in error message
* Integrate `cargo-deny` into tidy fully
* Fix script tests
---------
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
Diffstat (limited to 'python/tidy/__init__.py')
-rw-r--r-- | python/tidy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy/__init__.py b/python/tidy/__init__.py index 4d834ec6d7a..408fea9a2f3 100644 --- a/python/tidy/__init__.py +++ b/python/tidy/__init__.py @@ -7,5 +7,5 @@ # option. This file may not be copied, modified, or distributed # except according to those terms. -from .tidy import scan # noqa +from .tidy import scan # noqa from .test import run_tests # noqa |