Unfortunately we are not accepting external contributions at this time, sorry.
For maintainers:
If the pre-commit.ci
check fails, please install and run pre-commit
in your development environment as follows, accept auto-fixes and resolve any issues, and re-commit.
python3 -m pip install pre-commit
cd ~/asl-ml-immersion # or wherever your repo is
pre-commit install
pre-commit run --all-files
# fix any issues that weren't auto-fixed, such as `pylint` issues
git commit -a -m "pre-commit"
Linters are tools that check your code for syntax errors as well as PEP8 style violations, and either report any issues (such as pylint
) or sometimes even automatically fix your code (such as black
does). Please see the Pylint tutorial, and the Black documentation).
It is common practice to instead of choosing one linter, run multiple different linters one after the other on your code, and let each of them do their own job. Of course, you should not have conflicting rules in this case, such as different preferred max line lengths.
Note that there is an externally published Google pylint
configuration file linked to Google's external Python Style Guide, and this is copied to this repo's root.
It is trickier to run linters on notebooks than on simple .py
text files, but not impossible. First of all, one could just output a notebook as a Python script with jupyter nbconvert --to script
and run linters on the output.
However there are luckily other tools that wrap around such a process, as well as handle notebook idiosyncracies such as magic cells: nbQA and recently even built in to Black.
pre-commit allows you to define a set of passive checks or active automatic re-formats, that are executed if you request a git commit
, and your commit is only successful, if all of these checks successfully complete. If pre-commit
does edit your files, your commit is aborted and you have the chance to verify these changes before you'd commit again.
This set of hooks is defined in the repository root in a .pre-commit-config.yaml
file. This config will only actually be used during your commits if you first install pre-commit (both in general in your environment and specifically for your current repo):
python3 -m pip install pre-commit
cd ~/asl-ml-immersion # or wherever your repo is
pre-commit install
During a commit, pre-commit
only checks your changed files. If you would like to run pre-commit on the whole repository, you can do so:
pre-commit run --all-files
pre-commit
on its own relies on each contributor to have it installed in their local environments. It is even better if PR's are also checked once more at the GitHub side. This is made possible by pre-commit.ci, that is availble at no cost for public repositories as a GitHub Check and it is installed for this repository.
One thing to note is that while developer-side pre-commit checks run on the changeset, the CI check runs on the whole repo. Therefore, in order to fix a failing pre-commit.ci, you need to run pre-commit on the whole repo on your end with pre-commit run --all-files
, and also fix issues in files beyond your changeset.
(pre-commit.ci actually comes with the capability to automatically commit changes, but this is intentionally switched off with autofix_prs: false
as it causes the Google CLA check to fail.)
This repo's .pre-commit-config.yaml
includes:
- a set of small hooks available as part of pre-commit, in pre-commit-hooks, such as trailing-whitespace to remove trailing whitespace.
- the passive linter
pylint
which in turn usespylintrc
in the root which is the copy of the public Googlepylintrc
from here. - the active linter
black
, as well as its jupyter-compatible flavorsnbqa-black
andblack-jupyter
. - the specialized linters
isort
andpyupgrade
(including theirnbqa
versions), that update import statement orders, and Python 2/3 compatibility code pieces, respecitvely.
With comments like # pylint: disable=[rule]
, see the docs.
The short answer is "yes", but the longer answer is that "you shouldn't".
You can run a commit without any pre-commit checks by git commit --no-verify
.
You can also disable precommit-ci by including [skip ci]
in the commit message.
However, if you push through such a change, that means pre-commit.ci checks will most probably fail for all further commits until eternity, so you should actually resolve this state asap.
You have a few options:
- You can ask most linters to ignore parts of you code, such as in the
pylint
question above. - You can include an
exclude
pattern in the.pre-commit-config.yaml
to exclude a whole file. - You can modify
.pre-commit-config.yaml
to globally ignore certain rules, there are already such rules in the current config. - If a hook is really misbehaving, you could remove that specific hook, while leaving the other hooks in place.
For educational reasons, I write purposefully incomplete Python code, which fails syntax checks. What to do?
Syntax errors understandably trip multiple checks. The best way is to try to rewrite your incomplete code in a way that it is syntactically correct:
# instead of:
variable = # TODO
# use this:
variable = None # TODO
# instead of:
function_name( # TODO
# use this:
function_name(
# TODO
)
However if you must exclude a file, you can do it with the exclude
pattern. See also the "Can I disable pre-commit?" question answers.
pre-commit.ci comes with an autoupdate feature that cannot be disabled, it runs at least once a quarter (see in the config file autoupdate_schedule: quarterly
).
You can either accept and merge this PR, or if you probably don't want the Google CLA check to be failing, then create your own branch, run pre-commit autoupdate
, and commit and merge the results, and delete the original PR.
pre-commit.ci is failing because nbqa-black
and black-jupyter
disagree (and maybe it worked fine locally)
nbqa-black
uses your local version of black
(meaning the latest version on the server side), and this can clash with the black
version pinned in the pre-commit-config.yaml
.
The solution is to upgrade your local black
(such as pip install --upgrade black
), run pre-commit autoupdate
and push the changes.
(In theory there would be a solution, in the pre-commit-config.yaml file in the nbqa-black section one could add something like additional_dependencies : ['black:21.12b0']
(see also the same advice in the nbQA doc), but probably this would add an unnecessary layer of manual maintenance burden (e.g. having to manually bump this version and sync with black
's).)