-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(checkers): Add flymake-collection-flake8 (#7)
- Loading branch information
Showing
5 changed files
with
94 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
;;; flymake-collection-flake8.el --- Flake8 diagnostic function -*- lexical-binding: t -*- | ||
|
||
;; Copyright (c) 2022 Fredrik Bergroth | ||
|
||
;; Permission is hereby granted, free of charge, to any person obtaining a copy | ||
;; of this software and associated documentation files (the "Software"), to deal | ||
;; in the Software without restriction, including without limitation the rights | ||
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
;; copies of the Software, and to permit persons to whom the Software is | ||
;; furnished to do so, subject to the following conditions: | ||
|
||
;; The above copyright notice and this permission notice shall be included in all | ||
;; copies or substantial portions of the Software. | ||
|
||
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
;; SOFTWARE. | ||
|
||
;;; Commentary: | ||
|
||
;; `flymake' syntax checker for python using flake8. | ||
|
||
;;; Code: | ||
|
||
(require 'flymake) | ||
(require 'flymake-collection) | ||
|
||
(eval-when-compile | ||
(require 'flymake-collection-define)) | ||
|
||
(defcustom flymake-collection-flake8-args nil | ||
"Command line arguments always passed to `flymake-collection-flake8'." | ||
:type '(repeat string) | ||
:group 'flymake-collection) | ||
|
||
;;;###autoload (autoload 'flymake-collection-flake8 "flymake-collection-flake8") | ||
(flymake-collection-define-rx flymake-collection-flake8 | ||
"A Python syntax and style checker using Flake8. | ||
This syntax checker requires Flake8 3.0 or newer. | ||
See URL `https://flake8.readthedocs.io/'." | ||
:title "flake8" | ||
:pre-let ((flake8-exec (executable-find "flake8"))) | ||
:pre-check (unless flake8-exec | ||
(error "Cannot find flake8 executable")) | ||
:write-type 'pipe | ||
:command `(,flake8-exec | ||
,@flymake-collection-flake8-args | ||
,@(when-let ((file (buffer-file-name flymake-collection-source))) | ||
(list "--stdin-display-name" file)) | ||
"-") | ||
:regexps | ||
((warning bol (file-name) ":" line ":" column ": " (id (one-or-more alnum)) " " (message) eol))) | ||
|
||
(provide 'flymake-collection-flake8) | ||
|
||
;;; flymake-collection-flake8.el ends here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python3.8 -m pip install flake8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
checker: flymake-collection-flake8 | ||
tests: | ||
- name: no-lints | ||
file: | | ||
"""A test case with no output from flake8.""" | ||
print("hello world") | ||
lints: [] | ||
- name: notes | ||
file: | | ||
"""A test case with a warning lint.""" | ||
print(f"hello world") | ||
print(f"hello world") | ||
lints: | ||
- point: [3, 6] | ||
level: warning | ||
message: F541 f-string is missing placeholders (flake8) | ||
- point: [4, 6] | ||
level: warning | ||
message: F541 f-string is missing placeholders (flake8) | ||
- name: syntax-error | ||
file: | | ||
definitely should not work | ||
lints: | ||
- point: [1, 11] | ||
level: warning | ||
message: "E999 SyntaxError: invalid syntax (flake8)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters