Skip to content

Commit f4fef09

Browse files
committed
fix links and table of content
1 parent 04fc750 commit f4fef09

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

article/article.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ This article has two major parts: the first one is linter configuration, and the
1111
+ [Documentation](#documentation)
1212
+ [Import error](#import-error)
1313
+ [Tweaks for airflow code](#tweaks-for-airflow-code)
14-
- [GitHub workflow actions CI/CD configurations](#github-workflow-actions-ci-cd-configurations)
14+
- [GitHub workflow actions CI/CD configurations](#github-workflow-actions-cicd-configurations)
1515
* [When to run it](#when-to-run-it)
16-
* [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)
1717
* [Run linter itself](#run-linter-itself)
1818
- [Conclusion](#conclusion)
1919

@@ -28,11 +28,11 @@ Here are the linters and checks we are going to use:
2828

2929
**Disclaimer**: author assumes you are familiar with the above-mentioned linters, tools, and checks.
3030

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).
3232

3333
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).
35+
3636
![pyproject.toml](https://github.com/iamtodor/github-actions-python-configuration-demo/blob/main/article/img/flakeheaven-pyproject-config.png?raw=true)
3737

3838
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
142142

143143
We configure GitHub Workflow to be triggered on every PR against the main (master) branch.
144144

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.
146146

147147
![py_linter.yml](https://github.com/iamtodor/github-actions-python-configuration-demo/blob/main/article/img/gh-config-full.png?raw=true)
148148

0 commit comments

Comments
 (0)