Julio Biason
10 years ago
2 changed files with 26 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||||||
|
snippet #py "Set the python environment." |
||||||
|
#!/usr/bin/env python |
||||||
|
#-*- encoding: utf-8 |
||||||
|
|
||||||
|
"""${1:Module documentation}""" |
||||||
|
$0 |
||||||
|
endsnippet |
||||||
|
|
||||||
|
snippet class "Starting a Python class" |
||||||
|
class ${1:ClassName}(${2:extends}): |
||||||
|
|
||||||
|
"""${3:Class documentation}""" |
||||||
|
|
||||||
|
$0 |
||||||
|
endsnippet |
||||||
|
|
||||||
|
snippet lint "Start a lint-disable comment" |
||||||
|
# pylint:disable=${0:lint code} |
||||||
|
endsnippet |
Loading…
Reference in new issue