27 lines
597 B
TOML
27 lines
597 B
TOML
exclude = [
|
|
"target",
|
|
]
|
|
|
|
[commands.prettier]
|
|
type = "both"
|
|
include = [ "**/*.md", "**/*.yml" ]
|
|
cmd = [ "./node_modules/.bin/prettier", "--no-config" ]
|
|
lint_flags = "--check"
|
|
tidy_flags = "--write"
|
|
ok_exit_codes = 0
|
|
lint_failure_exit_codes = 1
|
|
ignore_stderr = [ "Code style issues" ]
|
|
|
|
[commands.omegasort-gitignore]
|
|
type = "both"
|
|
include = "**/.gitignore"
|
|
cmd = [ "omegasort", "--sort", "path", "--unique" ]
|
|
lint_flags = "--check"
|
|
tidy_flags = "--in-place"
|
|
ok_exit_codes = 0
|
|
lint_failure_exit_codes = 1
|
|
ignore_stderr = [
|
|
"The .+ file is not sorted",
|
|
"The .+ file is not unique",
|
|
]
|