A linter is an analysis tool that checks for common errors or compatibility issues, usually automatically, or as part of some other process.
Snapcraft (from version 7.2 onwards) includes its own linter functionality when working with snaps using the core22
base.
Snapcraft linters run automatically when a snap is packed unless otherwise disabled.
Snapcraft runs the following linters:
classic
: verifies binary file parameters for snaps using classic confinementlibrary
: verifies that no ELF file dependencies, such as libraries, are missing and that no extra libraries are included in the snap packageSnapcraft linters run automatically when a snap is packed but specific linters can be disabled by specifying a ignore
entry in the lint
section of snapcraft.yaml
:
lint:
ignore:
- classic
- library
The ignore
entry must include one or more linter names for those linters to be disabled.
To omit specific files from a linter, add their snap location under the linter name:
lint:
ignore:
- classic
- library:
- usr/lib/**/libfoo.so*
In the above example, the classic
linter will be disabled entirely, and the library
linter will not run for the files matching the specified file pattern.
Last updated 2 months ago.