From 3ccf6de8686e52a914cb96942f0e2e2ef23a8501 Mon Sep 17 00:00:00 2001 From: Quantum Date: Sat, 25 Dec 2021 15:52:53 -0500 Subject: [PATCH] [all] gitignore: ignore __pycache__ and *.py[co] This prevents accidental commits of the compiled spellchecker. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 08feabf1..d35a85d1 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,5 @@ module/modules.order *.o *.exe */build +__pycache__ +*.py[co]