1
0
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:
2022-12-27 23:29:55 +05:00
parent 97e3490a8d
commit 8cf4f34e30

View File

@@ -120,7 +120,7 @@ export class LintConfig {
this.fileLintRules.push(strictMacroDefinition)
}
if (json?.noGremlins) {
if (json?.noGremlins === undefined || json?.noGremlins) {
this.lineLintRules.push(noGremlins)
}