1
0
mirror of https://github.com/sasjs/lint.git synced 2026-01-20 18:40:06 +00:00

chore: prevent space b/w macroName and starting parentheses is not applicable

This commit is contained in:
Saad Jutt
2021-05-21 20:16:24 +05:00
parent a762dadf37
commit 020a1e08d0
2 changed files with 0 additions and 26 deletions

View File

@@ -139,18 +139,4 @@ describe('hasMacroParentheses', () => {
])
})
})
// it('should return an array with a single diagnostic when a macro definition contains a space', () => {
// const content = `%macro test ()`
// expect(hasMacroParentheses.test(content)).toEqual([
// {
// message: 'Macro definition contains space(s)',
// lineNumber: 1,
// startColumnNumber: 8,
// endColumnNumber: 14,
// severity: Severity.Warning
// }
// ])
// })
})