FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-mode/t/lint.vim at develop · PINKONG/python-mode · GitHub
PINKONG
/
python-mode
Public
forked from
python-mode/python-mode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-mode
/
t
/
lint.vim
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (22 loc) · 776 Bytes
Breadcrumbs
python-mode
/
t
/
lint.vim
Copy path
File metadata and controls
30 lines (22 loc) · 776 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
source
plugin
/pymode.
vim
describe
'
pymode check code
'
before
set
ft
=
python
end
after
bd
!
end
it
'
pymode lint loaded
'
Expect
g:
pymode_lint
==
1
end
it
'
lint code
'
put
=
[
'
# coding: utf-8
'
,
'
call_unknown_function()
'
]
PymodeLint
Expect
getloclist
(
0
)
==
[]
end
it
'
lint code
'
e
t
/test.
py
PymodeLint
Expect
getloclist
(
0
)
==
[{
'
lnum
'
:
6
,
'
bufnr
'
:
1
,
'
col
'
:
0
,
'
valid
'
:
1
,
'
vcol
'
:
0
,
'
nr
'
:
0
,
'
type
'
:
'
E
'
,
'
pattern
'
:
'
'
,
'
text
'
:
'
W0612 local variable "unused" is assigned to but never used [pyflakes]
'
}, {
'
lnum
'
:
8
,
'
bufnr
'
:
1
,
'
col
'
:
0
,
'
valid
'
:
1
,
'
vcol
'
:
0
,
'
nr
'
:
0
,
'
type
'
:
'
E
'
,
'
pattern
'
:
'
'
,
'
text
'
:
'
E0602 undefined name "unknown" [pyflakes]
'
}]
end
end
Back
|
FazBrowse Home
|
New Git URL