mirror of https://github.com/databricks/cli.git
lint: Raise max issues output (#2067)
By default it stops after 3 issues of a given type, which gives false impression and also unhelpful if you fixing it with aider. 1000 is almost like unlimited but not unlimited in case there is a bug in a linter.
This commit is contained in:
parent
890c57eabe
commit
cae21693bb
|
@ -40,3 +40,5 @@ linters-settings:
|
||||||
- require-error
|
- require-error
|
||||||
issues:
|
issues:
|
||||||
exclude-dirs-use-default: false # recommended by docs https://golangci-lint.run/usage/false-positives/
|
exclude-dirs-use-default: false # recommended by docs https://golangci-lint.run/usage/false-positives/
|
||||||
|
max-issues-per-linter: 1000
|
||||||
|
max-same-issues: 1000
|
||||||
|
|
Loading…
Reference in New Issue