Initial commit
This commit is contained in:
commit
209ba130c0
4852 changed files with 1517959 additions and 0 deletions
16
.config/lite-xl/plugins/lintplus/linters/python.lua
Normal file
16
.config/lite-xl/plugins/lintplus/linters/python.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
local lintplus = require "plugins.lintplus"
|
||||
|
||||
lintplus.add("flake8") {
|
||||
filename = "%.py$",
|
||||
procedure = {
|
||||
command = lintplus.command(
|
||||
{ "flake8",
|
||||
lintplus.filename },
|
||||
"flake8_args"
|
||||
),
|
||||
interpreter = lintplus.interpreter {
|
||||
warning = "(.-):(%d+):(%d+): [FCW]%d+ (.+)",
|
||||
error = "(.-):(%d+):(%d+): E%d+ (.+)",
|
||||
}
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue