I am using pylint version 2.16.1 on Python version 3.9 on windows.
I need to execute pylint for all the files of non ".py" extension (example .abc extension) in directory and its subdirectories. I could not find an option as part of the pylint to perform the same.
I could run pylint on a specific file of non py extension (example .abc extension) and it successfully gives the output. For example: pylint my_file_name.abc
But if I try to run pylint with wildcard '*.abc" , it gives an error:
************* Module *.abc *.abc:1:0: F0001: No module named *.abc (fatal)
Note: I do have the init.py in the folder I am trying run from the folder.