rokucommunity / bslint

A linter for BrightScript and BrighterScript.
MIT License
27 stars 14 forks source link

Ignore roku_modules #81

Closed iBicha closed 1 year ago

iBicha commented 1 year ago

I'm trying to get the linter to ignore modules, but I don't seem to get it

Screen Shot 2022-11-08 at 9 14 10 AM
TwitchBronBron commented 1 year ago

brs1107 is a brighterscript diagnostic, so the bslint "ignores" won't work. You'll need to also add that folder to the list of diagnosticFilters in bsconfigjson

{
    "diagnosticFilters": [
        "components/roku_modules/**/*"
    ]
}
iBicha commented 1 year ago

Thank you!