Skip to content
Snippets Groups Projects
Verified Commit a4301f21 authored by Levente Polyak's avatar Levente Polyak :rocket:
Browse files

RFC-0043: implement typos checks

parent b1dd2f40
No related branches found
No related tags found
1 merge request!45RFC-0043: Convert all rst files to markdown and implement all linter
......@@ -19,6 +19,14 @@ lint-markdownlint:
script:
- make lint-markdownlint
lint-typos:
stage: lint
needs: []
before_script:
- pacman -Syu --needed --noconfirm make typos
script:
- make lint-typos
build:
stage: build
needs: []
......@@ -34,6 +42,7 @@ pages:
stage: deploy
needs:
- lint-markdownlint
- lint-typos
- build
dependencies: []
tags:
......
[default]
extend-ignore-re = [
"`\\.rela\\.dyn`",
]
......@@ -13,10 +13,13 @@ build:
check: lint
lint: lint-markdownlint
lint: lint-markdownlint lint-typos
lint-markdownlint:
mdl $(FILES)
lint-typos:
typos $(FILES)
clean:
rm -rf public resources
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment