From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Refactoring flymake.el Date: Thu, 17 Aug 2017 18:32:48 -0400 Message-ID: References: <87378q2r62.fsf@lolita> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1503009233 7194 195.159.176.226 (17 Aug 2017 22:33:53 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 17 Aug 2017 22:33:53 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Aug 18 00:33:49 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1diTMI-0001St-AN for ged-emacs-devel@m.gmane.org; Fri, 18 Aug 2017 00:33:46 +0200 Original-Received: from localhost ([::1]:54256 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1diTMP-0001TM-1t for ged-emacs-devel@m.gmane.org; Thu, 17 Aug 2017 18:33:53 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39669) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1diTLZ-0001Sx-FI for emacs-devel@gnu.org; Thu, 17 Aug 2017 18:33:02 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1diTLW-0002H5-9H for emacs-devel@gnu.org; Thu, 17 Aug 2017 18:33:01 -0400 Original-Received: from [195.159.176.226] (port=44904 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1diTLW-0002GX-2W for emacs-devel@gnu.org; Thu, 17 Aug 2017 18:32:58 -0400 Original-Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1diTLM-0006sW-V9 for emacs-devel@gnu.org; Fri, 18 Aug 2017 00:32:48 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 17 Original-X-Complaints-To: usenet@blaine.gmane.org Cancel-Lock: sha1:B8I0QKm2XNmu5y27PlbtLbwRv0c= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 195.159.176.226 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:217600 Archived-At: > One thing about flymake that inconveniences me is that I cannot disable > it for some specific files. > I have a bunch of "scratch.py" files that I use as poor man's notebooks. Can you add some file-local settings in them? > +(defcustom flymake-disallowed-file-name-regexp nil > + "File names matching this regexp will not be checked. > +This overrides `flymake-allowed-file-name-masks'." > + :group 'flymake > + :type 'string > + :version "26.1") Using file-local or dir-local variables settings is often more convenient. Stefan