mirror of
https://github.com/sasjs/lint.git
synced 2025-12-11 09:54:35 +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)
|
||||
}
|
||||
|
||||
if (json?.noGremlins) {
|
||||
if (json?.noGremlins === undefined || json?.noGremlins) {
|
||||
this.lineLintRules.push(noGremlins)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user