White-list third-party in conf files

This commit is contained in:
mcarton 2016-03-06 14:40:25 +01:00
parent c7db94aee6
commit 403c54ec5b
4 changed files with 16 additions and 0 deletions

View file

@ -100,6 +100,10 @@ macro_rules! define_Conf {
}
},
)+
"third-party" => {
// for external tools such as clippy-service
return Ok(());
}
_ => {
return Err(ConfError::UnknownKey(name));
}