You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
would be helpful to know where the config file is.
Or maybe a --verbose option that outputs the config file that is in play.
I had to use
pacman -Fl yamllint
and search through the output to find out that /usr/lib/python3.11/site-packages/yamllint/conf/default.yaml is responsible for the linting rules.
PS: How do I run/build/link this project?
This did not work:
$ python3 __main__.py
Traceback (most recent call last):
File "/home/bf/workspace/git/yamllint/yamllint/__main__.py", line 16, in <module>
from yamllint.cli import run
ModuleNotFoundError: No module named 'yamllint'
The text was updated successfully, but these errors were encountered:
I understand the need, but I'm not sure printing a file path would make sense, since yamllint can recursively aggregate multiple config files + command-line arguments to parse its configuration. Printing the whole configuration as text could be an option, but given the scarcity of this need, I doubt it's worth implementing it.
Hello,
a
or
would be helpful to know where the config file is.
Or maybe a
--verbose
option that outputs the config file that is in play.I had to use
and search through the output to find out that
/usr/lib/python3.11/site-packages/yamllint/conf/default.yaml
is responsible for the linting rules.PS: How do I run/build/link this project?
This did not work:
The text was updated successfully, but these errors were encountered: