summaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/config')
-rw-r--r--src/config/not_validated.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/config/not_validated.rs b/src/config/not_validated.rs
index bdbce89..9f99f80 100644
--- a/src/config/not_validated.rs
+++ b/src/config/not_validated.rs
@@ -38,6 +38,9 @@ pub struct NotValidatedConfiguration {
#[getset(get = "pub")]
script_highlight_theme: Option<String>,
+ #[getset(get = "pub")]
+ script_linter: Option<PathBuf>,
+
#[serde(default = "default_script_shebang")]
#[getset(get = "pub")]
shebang: String,
@@ -86,6 +89,12 @@ pub struct NotValidatedConfiguration {
impl NotValidatedConfiguration {
pub fn validate(self) -> Result<Configuration> {
+ if let Some(linter) = self.script_linter.as_ref() {
+ if !linter.is_file() {
+ return Err(anyhow!("Lint script is not a file: {}", linter.display()))
+ }
+ }
+
if !self.staging_directory.is_dir() {
return Err(anyhow!("Not a directory: staging = {}", self.staging_directory.display()))
}