A code linter for alidist packages
Project description
alidistlint - code linter for alidist recipes
alidistlint runs shellcheck on the scripts in alidist recipes and yamllint on their YAML headers, in addition to its own validation and checks on the YAML header and scripts in the recipe.
Installation
To install alidistlint, run:
python3 -m pip install --user alidistlint
You should also install yamllint and shellcheck, though this is optional.
If you want to use the --changes flag, install its dependencies like this:
python3 -m pip install --user 'alidistlint[git]'
Usage
Run alidistlint -h to get more information about its arguments.
usage: alidistlint [-h] [-S] [-Y] [-H] [-f FORMAT] [-e | --changes COMMITS] RECIPE [RECIPE ...]
You can disable individual checkers using -S/--no-shellcheck and -Y/--no-yamllint for external linters, or -L/--no-scriptlint and -H/--no-headerlint for alidistlint's built-in linters.
By default, all checkers are run.
Optionally, select the output format of errors using -f/--format.
You can also make alidistlint limit the warnings and notes it outputs.
Use the -e/--errors-only option to omit them entirely, and only show critical error messages.
Alternatively, you can limit non-critical messages to those that apply to changed code between the given commits using the --changes option.
Errors are always shown, even if they apply to unchanged lines.
This can be useful in CI, to gradually transition to using this linter.
Finally, pass one or multiple files to be checked to alidistlint.
You can use - for the standard input here, but be aware that this will produce spurious errors, as file names are meaningful for alidist recipes.
Errors and warnings will be printed to standard output in the format you selected.
If any messages with "error" severity were produced, alidistlint exits with a non-zero exit code.
Shellcheck validation
The main build recipe (after the --- line) is passed to shellcheck.
Currently, toplevel keys ending in _recipe or _check (such as incremental_recipe) are also checked using shellcheck.
This does not work for such keys specified in overrides yet.
There is a known issue with the checking of the above keys: if they do not start on a new line (using e.g. key: |), the reported line numbers for shellcheck errors will be off by one.
Internal script checks
The following error codes are produced by the internal linter for scripts in recipes.
This linter checks for alidist-specific pitfalls and bad practices in shell scripts that shellcheck won't know about.
It can be switched off using -L/--no-scriptlint.
There is currently no way to disable individual checks.
ali:script-type(error): The contents of a*_recipeor*_checkvalue in the YAML header were not parsed as a string. Perhaps you used a barefoo_recipe:, which results in anullvalue, not an empty string.ali:missing-modulefile(note): The linter could not detect the creation of a Modulefile for this package, even though it has determined that one is needed. Ideally, usealibuild-generate-moduleto create a Modulefile for you. If you're generating a Modulefile yourself, make sure that it starts with a#%Module1.0comment and that this string appears in the script.ali:consider-a-g-m(note): The linter detected that you're manually generating a Modulefile in this recipe. You should prefer usingalibuild-generate-module, which creates the common Modulefile boilerplate for you. If usingalibuild-generate-module, you can still append your own Modulefile commands to the generated file.ali:bad-shebang(note):aliBuildruns scripts usingbash -e. Non-trivial scripts (i.e. the "main" script in a recipe andincremental_recipe, if provided) must start with a#!/bin/bash -eline to signal this toshellcheck. For other scripts, this check is only enforced if the script in question already has a shebang line, to avoid confusion.ali:colons-prepend-path(error): Modules 4 does not allow colons inprepend-path, but the linter detected that you used them. Use multipleprepend-pathcalls to prepend multiple things to$PATHinstead.ali:dyld-library-path(note): On MacOS, theDYLD_LIBRARY_PATHvariable is not propagated to subprocesses if System Integrity Protection is enabled. Recipes must not rely on this variable. If there is a problem and libraries cannot be found at runtime, thenaliBuild's relocation code must be fixed.ali:masked-exitcode(note): Commands of the formmkdir ... && rsync ...are an often-copy-pasted pattern in alidist recipes. This is usually used to install Modulefiles. However, this line does not behave correctly if themkdirfails: in that case, thersyncis silently skipped. If you find a false positive for this check, please open an issue.
Internal YAML header validation
The following error codes are produced by the internal linter for YAML headers.
It can be switched off using -H/--no-headerlint.
There is currently no way to disable individual checks.
ali:empty(error): The YAML header was not found. It must be terminated by a\n-terminated line containing nothing but three dashes (---).ali:parse(error): The YAML header could not be parsed or was fundamentally invalid. This is produced when PyYAML'syaml.loadraises an error or when the provided YAML header is not a dictionary.key: valuepairs must be provided as the YAML header.ali:schema(error): The YAML header did not conform to its schema. See the error message for more details.ali:key-order(warning): Thepackage,versionandtagkeys were not found in the correct order. These keys should be the first in the file, in the above order (if present). Additionally, therequireskey must come beforebuild_requires.ali:replacement-specs(warning): Either theprefer_system_checkseems to select a replacement spec, but none are defined using theprefer_system_replacement_specskey, or replacement specs are defined, but none are ever selected by theprefer_system_check.
GitHub Actions integration
You can run alidistlint as part of a GitHub Action using -f github. In that case, alidistlint will annotate files with the errors found in them.
alidistlint will exit with a non-zero exit code if any errors were found (but not if only warnings were produced), which will cause the workflow to fail.
Vim integration
Put the following in your .vimrc:
autocmd BufNewFile,BufRead *alidist/*.sh set makeprg=alidistlint\ -f\ gcc\ % errorformat=%f:%l:%c:\ %t%*[a-z]:\ %m
" If you want to automatically re-run the linter on every save:
autocmd BufWritePost *alidist/*.sh make
Then you can use :make to run the linter, :cl to see the error list, and navigate from one error to another using :cp (previous), :cc (current) and :cn (next).
Emacs integration
Here is a simple Flycheck checker using alidistlint.
You can set this to check alidist recipes.
(require 'flycheck)
(flycheck-def-executable-var alidist "alidistlint")
(flycheck-define-checker alidist
"A syntax checker and linter for alidist recipes."
;; `flycheck-alidist-executable' automatically overrides the car of the
;; :command list if set and non-nil.
:command ("alidistlint" "--format=gcc" source)
:error-patterns
((error line-start (file-name) ":" line ":" column ": error: " (message)
" [" (id (minimal-match (one-or-more not-newline))) "]" line-end)
(warning line-start (file-name) ":" line ":" column ": warning: " (message)
" [" (id (minimal-match (one-or-more not-newline))) "]" line-end)
(info line-start (file-name) ":" line ":" column ": note: " (message)
" [" (id (minimal-match (one-or-more not-newline))) "]" line-end)))
(add-to-list 'flycheck-checkers 'alidist)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file alidistlint-1.7.3.tar.gz.
File metadata
- Download URL: alidistlint-1.7.3.tar.gz
- Upload date:
- Size: 34.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bc7b156493cc39abcbc7deb7e3de023391716e773623dc5949ae79c456850d2
|
|
| MD5 |
5ef28c19d5593b2043173d09a1726269
|
|
| BLAKE2b-256 |
8a118c3ee6e1f179e2d36297ab98f683a6d55285ae4c54939f4d7c5078d0e340
|
Provenance
The following attestation bundles were made for alidistlint-1.7.3.tar.gz:
Publisher:
release.yml on alisw/alidistlint
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alidistlint-1.7.3.tar.gz -
Subject digest:
3bc7b156493cc39abcbc7deb7e3de023391716e773623dc5949ae79c456850d2 - Sigstore transparency entry: 612575930
- Sigstore integration time:
-
Permalink:
alisw/alidistlint@49a36bbf9a505f428de71df3d65dd1b7eaff3a24 -
Branch / Tag:
refs/tags/v1.7.3 - Owner: https://github.com/alisw
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@49a36bbf9a505f428de71df3d65dd1b7eaff3a24 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alidistlint-1.7.3-py3-none-any.whl.
File metadata
- Download URL: alidistlint-1.7.3-py3-none-any.whl
- Upload date:
- Size: 34.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9855c26d10ac19437f73b115aace8c704b57fdcd56f050a83ee7bffd4e0657d6
|
|
| MD5 |
9e7be5c45371aed51b1e112b87c18c35
|
|
| BLAKE2b-256 |
9ddfa38c8763d2a2254235d464769bf27ff863103779049a1df88e750ba4d46d
|
Provenance
The following attestation bundles were made for alidistlint-1.7.3-py3-none-any.whl:
Publisher:
release.yml on alisw/alidistlint
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alidistlint-1.7.3-py3-none-any.whl -
Subject digest:
9855c26d10ac19437f73b115aace8c704b57fdcd56f050a83ee7bffd4e0657d6 - Sigstore transparency entry: 612575962
- Sigstore integration time:
-
Permalink:
alisw/alidistlint@49a36bbf9a505f428de71df3d65dd1b7eaff3a24 -
Branch / Tag:
refs/tags/v1.7.3 - Owner: https://github.com/alisw
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@49a36bbf9a505f428de71df3d65dd1b7eaff3a24 -
Trigger Event:
push
-
Statement type: