From 667d5ac622db89aad104a2c91c919ea792674354 Mon Sep 17 00:00:00 2001 From: Job Evers-Meltzer Date: Thu, 1 Dec 2016 10:36:33 -0600 Subject: [PATCH] add emacs tmp files to pylint blacklist --- .pylintrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.pylintrc b/.pylintrc index 14cd1811a..9af4993e0 100644 --- a/.pylintrc +++ b/.pylintrc @@ -11,6 +11,11 @@ # paths. ignore=CVS +# Add files or directories matching the regex patterns to the +# blacklist. The regex matches against base names, not paths. +# `\.#.*` - add emacs tmp files to the blacklist +ignore-patterns=\.#.* + # Pickle collected data for later comparisons. persistent=yes