Closed bzz closed 6 years ago
So if in local .lookout.yaml (or global server configuration) include
.lookout.yaml
analyzers: - name: gometalint-analyzer linters: - name: lll maxLen: 120
lll linter should report only lines more the 120 chars. Simplest way to do so is by passing this as --line-length=N CLI args to lll.
--line-length=N
lll
This would allow to remove some friction, while using it.
config will be:
analyzers: - name: gometalint-analyzer settings: linters: - name: lll maxLen: 120
because the configuration must be inside settings in lookout
settings
So if in local
.lookout.yaml
(or global server configuration) includelll linter should report only lines more the 120 chars. Simplest way to do so is by passing this as
--line-length=N
CLI args tolll
.This would allow to remove some friction, while using it.