mirror of
https://github.com/servo/servo.git
synced 2025-06-08 00:23:30 +00:00
Rewrite the ban-type lint in Python
Delete old rust ban lint and move tests to python tidy Fix ban lint regex and fix test
This commit is contained in:
parent
26de7c6bc4
commit
ebcb15d6f2
6 changed files with 18 additions and 56 deletions
|
@ -25,7 +25,6 @@ extern crate syntax;
|
|||
use rustc_plugin::Registry;
|
||||
use syntax::feature_gate::AttributeType::Whitelisted;
|
||||
|
||||
mod ban;
|
||||
mod unrooted_must_root;
|
||||
/// Utilities for writing plugins
|
||||
mod utils;
|
||||
|
@ -33,7 +32,6 @@ mod utils;
|
|||
#[plugin_registrar]
|
||||
pub fn plugin_registrar(reg: &mut Registry) {
|
||||
reg.register_late_lint_pass(box unrooted_must_root::UnrootedPass::new());
|
||||
reg.register_early_lint_pass(box ban::BanPass);
|
||||
reg.register_attribute("allow_unrooted_interior".to_string(), Whitelisted);
|
||||
reg.register_attribute("must_root".to_string(), Whitelisted);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue