2019-07-22 12:05:57 +03:00
|
|
|
run:
|
|
|
|
# timeout for analysis
|
2020-09-04 15:10:03 +03:00
|
|
|
deadline: 10m
|
2019-09-11 15:21:04 +03:00
|
|
|
|
2019-09-17 16:21:31 +03:00
|
|
|
# Skip autogenerated files for mobile.
|
|
|
|
skip-files:
|
|
|
|
- "mobile\\/.*generated\\.go"
|
|
|
|
|
2019-10-24 13:04:26 +03:00
|
|
|
skip-dirs:
|
|
|
|
- channeldb/migration_01_to_11
|
|
|
|
|
2019-09-10 13:35:31 +03:00
|
|
|
build-tags:
|
|
|
|
- autopilotrpc
|
|
|
|
- chainrpc
|
|
|
|
- invoicesrpc
|
|
|
|
- signrpc
|
|
|
|
- walletrpc
|
|
|
|
- watchtowerrpc
|
2019-07-22 12:05:57 +03:00
|
|
|
|
|
|
|
linters-settings:
|
|
|
|
govet:
|
|
|
|
# Don't report about shadowed variables
|
|
|
|
check-shadowing: false
|
|
|
|
gofmt:
|
|
|
|
# simplify code: gofmt with `-s` option, true by default
|
|
|
|
simplify: true
|
|
|
|
|
|
|
|
linters:
|
2019-09-11 15:21:04 +03:00
|
|
|
enable-all: true
|
|
|
|
disable:
|
|
|
|
# Global variables are used in many places throughout the code base.
|
|
|
|
- gochecknoglobals
|
|
|
|
|
|
|
|
# Some lines are over 80 characters on purpose and we don't want to make them
|
|
|
|
# even longer by marking them as 'nolint'.
|
|
|
|
- lll
|
|
|
|
|
|
|
|
# We don't care (enough) about misaligned structs to lint that.
|
|
|
|
- maligned
|
|
|
|
|
2019-09-13 12:15:43 +03:00
|
|
|
# We have long functions, especially in tests. Moving or renaming those would
|
|
|
|
# trigger funlen problems that we may not want to solve at that time.
|
|
|
|
- funlen
|
|
|
|
|
2019-09-17 06:46:01 +03:00
|
|
|
# Disable for now as we haven't yet tuned the sensitivity to our codebase
|
|
|
|
# yet. Enabling by default for example, would also force new contributors to
|
|
|
|
# potentially extensively refactor code, when they want to smaller change to
|
|
|
|
# land.
|
|
|
|
- gocyclo
|
|
|
|
|
|
|
|
# Instances of table driven tests that don't pre-allocate shouldn't trigger
|
|
|
|
# the linter.
|
|
|
|
- prealloc
|
|
|
|
|
2019-08-08 20:39:38 +03:00
|
|
|
# Init functions are used by loggers throughout the codebase.
|
|
|
|
- gochecknoinits
|
|
|
|
|
2019-09-11 15:21:04 +03:00
|
|
|
issues:
|
|
|
|
# Only show newly introduced problems.
|
|
|
|
new-from-rev: 01f696afce2f9c0d4ed854edefa3846891d01d8a
|
2019-12-03 12:38:21 +03:00
|
|
|
|
|
|
|
exclude-rules:
|
|
|
|
# Exclude gosec from running for tests so that tests with weak randomness
|
|
|
|
# (math/rand) will pass the linter.
|
|
|
|
- path: _test\.go
|
|
|
|
linters:
|
|
|
|
- gosec
|
2020-01-10 17:27:50 +03:00
|
|
|
|
|
|
|
# Fix false positives because of build flags in itest directory.
|
|
|
|
- path: lntest/itest/.*
|
|
|
|
linters:
|
|
|
|
- unused
|
|
|
|
- deadcode
|
|
|
|
- unparam
|
|
|
|
- govet
|