# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-import re
import subprocess
import sys
-# Files to completely ignore.
-re_ignore = re.compile("ChangeLog")
-
# Files that are not clean, so they're only checked when changes.
todo_list = []
clean = []
other = []
for f in sys.argv[1:]:
- m = re_ignore.search(f)
- if m:
- continue
-
if f not in todo_list:
clean.append(f)
else:
[tool.codespell]
skip = [
-# Skip ChangeLogs and generated files.
-'*/ChangeLog*',
+# Skip generated files.
'*/configure',
'gdbsupport/Makefile.in',
'*.dat',