I have a project tree such as:
...\src\main\python\gui
...\src\main\python\dialogs
...
The gui folder is populated by QT Designer created python using the uic module which is part of the designer package. I don't want pylint to flag the modules when I open them to check on a setting.

I;ve tried (in my .pylintrc file)
ignore-patterns=.*gui
and
ignore-patterns=.*\\gui
and
ignore-patterns=gui
and
others 

None of them seem to cause pylint under vscode to ignore the modules. I also tried just the ignore=CVS,gui, but that did not work either.

How do I enter the specification?
python 3.9.5 and pylint 2.8.2



Thanks,
Ed