From 475adc05ab6dad74879d9fa8790de8f5c8349694 Mon Sep 17 00:00:00 2001 From: David Trattnig <david@subsquare.at> Date: Fri, 29 Jul 2022 12:16:02 +0200 Subject: [PATCH] Fix: New ignore path for spelling #95 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 949c98f0..843395ad 100644 --- a/Makefile +++ b/Makefile @@ -85,7 +85,7 @@ lint:: python3 -m flake8 . spell:: SPELL_PATHS := $(wildcard *.md) docs src tests config contrib -spell:: SPELL_PATHS_SKIP := src/client/playerclient.py +spell:: SPELL_PATHS_SKIP := src/aura_engine/client/playerclient.py spell:: SPELL_IGNORE_FILE := .codespellignore spell:: codespell --ignore-words "$(SPELL_IGNORE_FILE)" --skip "$(SPELL_PATHS_SKIP)" $(SPELL_PATHS) -- GitLab