mirror of
https://github.com/sasjs/lint.git
synced 2026-01-16 08:40:05 +00:00
fix: noGremlins should be true by default even though if its not defined in .sasjslint
This commit is contained in:
@@ -120,7 +120,7 @@ export class LintConfig {
|
|||||||
this.fileLintRules.push(strictMacroDefinition)
|
this.fileLintRules.push(strictMacroDefinition)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (json?.noGremlins) {
|
if (json?.noGremlins === undefined || json?.noGremlins) {
|
||||||
this.lineLintRules.push(noGremlins)
|
this.lineLintRules.push(noGremlins)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user