-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: shorter syntax for "no rules" #72
Comments
Hi, What about It could be achieved by creating a config file ( |
I'm closing this because |
but it wasn't obvious to me at the time what would make for a minimal valid set of configuration data to produce the desired result. I can't remember what I tried then, but today I tried...
PS: "CONFIG_DATA" doesn't seem to appear in the online docs at all. |
I want to run yamllint without any "style" rules, breaking only on syntax errors. The shortest way I've found to do that is
yamllint -d "{rules:{}}" file.yaml
which took me a few tries to get right and seems overly verbose.It would be nice if an empty config file or
-d ""
would work, or even if there was a command line option to disable all rules.The text was updated successfully, but these errors were encountered: