You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[What files does it run against to](#what-files-does-it-run-against-to)
16
+
*[What files does it run against](#what-files-does-it-run-against)
17
17
*[Run linter itself](#run-linter-itself)
18
18
-[Conclusion](#conclusion)
19
19
@@ -28,11 +28,11 @@ Here are the linters and checks we are going to use:
28
28
29
29
**Disclaimer**: author assumes you are familiar with the above-mentioned linters, tools, and checks.
30
30
31
-
I would like to share how to configure them for the python project. I prepared a full [github actions python configuration demo repository](https://github.com/iamtodor/github-actions-python-demo).
31
+
I would like to share how to configure them for the python project. I prepared a full [github actions python configuration demo repository](https://github.com/iamtodor/demo-github-actions-python-configuration).
32
32
33
33
We use `flakeheaven` as a `flake8` wrapper, which is very easy to configure in one single `pyproject.toml`. The whole `pyproject.toml` configuration file can be found in
34
-
a [demo repo](https://github.com/iamtodor/github-actions-python-configuration-demo/blob/main/pyproject.toml).
35
-
~
34
+
a [demo repo](https://github.com/iamtodor/demo-github-actions-python-configuration/blob/main/pyproject.toml).
I would say the config file is self-explainable, so I will not stop here for long. Just a few notes about tiny tweaks.
@@ -142,7 +142,7 @@ More info about rules could be found on [flake8 rules page](https://www.flake8ru
142
142
143
143
We configure GitHub Workflow to be triggered on every PR against the main (master) branch.
144
144
145
-
The whole `py_linter.yml` config can be found in a [demo repo](https://github.com/iamtodor/github-actions-python-demo/blob/main/.github/workflows/py_linter.yml). I will walk you through it step by step.
145
+
The whole `py_linter.yml` config can be found in a [demo repo](https://github.com/iamtodor/demo-github-actions-python-configuration/blob/main/.github/workflows/py_linter.yml). I will walk you through it step by step.
0 commit comments