-
Notifications
You must be signed in to change notification settings - Fork 87
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
Create elvis.config.sample file #438
Comments
Is the Rules wiki enough for this? Or should we consider a different location for this file? I don't mind tackling this issue. I might even learn a few new things about |
We should add something like this to that wiki to solve the issue… [
{
elvis,
[
{config,
[#{dirs => ["src"],
filter => "*.erl",
ruleset => erl_files,
rules => [
% your exceptional rules
]
},
#{dirs => ["test"],
filter => "*.erl",
ruleset => erl_files,
rules => [
% your exceptional rules
]
},
#{dirs => ["."],
filter => "elvis.config",
ruleset => elvis_config,
rules => [
% your exceptional rules
]
},
…
]
}
]
}
]. The idea being that someone can just add that elvis.config to their project and then tune it. |
with all possible entries (i.e. one for |
I added the example |
Excellent!! |
with all the available fields. Related to [#437]
The text was updated successfully, but these errors were encountered: