From 99262f635697432c935767bebd990de7b16b8bd9 Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Tue, 12 Jul 2022 15:03:31 +0200 Subject: [PATCH] FEM: extend codespell command in code conventions --- src/Mod/Fem/coding_conventions.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Mod/Fem/coding_conventions.md b/src/Mod/Fem/coding_conventions.md index 018e0def83..724fa0017d 100644 --- a/src/Mod/Fem/coding_conventions.md +++ b/src/Mod/Fem/coding_conventions.md @@ -8,9 +8,10 @@ These coding rules apply to FEM module code only. Other modules or the base syst ```bash # Find typos - codespell -q 2 -S *.ts -L childs,dof,dum,methode,nd,normaly,uint,vertexes,freez src/Mod/Fem/ + codespell -q 2 -S *.ts -S *.dyn -S *.svg -L childs,dof,dum,freez,methode,nd,normaly,programm,som,uint,vertexes,inout src/Mod/Fem/ + # Interactively fix said typos - codespell -i 3 -w -S *.ts -L childs,dof,dum,methode,nd,normaly,uint,vertexes,freez src/Mod/Fem/ + codespell -i 3 -w -S *.ts -S *.dyn -S *.svg -L childs,dof,dum,freez,methode,nd,normaly,programm,som,uint,vertexes,inout src/Mod/Fem/ ``` **Notes:**