979aad5acb
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
17 lines
283 B
Elixir
17 lines
283 B
Elixir
use Mix.Config
|
|
alias Dogma.Rule
|
|
|
|
config :dogma,
|
|
# Select a set of rules as a base
|
|
rule_set: Dogma.RuleSet.All,
|
|
|
|
# Pick paths not to lint
|
|
exclude: [
|
|
~r(\Alib/vendor/)
|
|
],
|
|
|
|
# Override an existing rule configuration
|
|
override: [
|
|
%Rule.LineLength{enabled: false}
|
|
]
|