mirror of
https://github.com/sstent/sublime-text-3.git
synced 2026-01-29 16:42:28 +00:00
backing up sublime settings
This commit is contained in:
36
Packages/SublimeLinter/linter-plugin-template/linter.py
Normal file
36
Packages/SublimeLinter/linter-plugin-template/linter.py
Normal file
@@ -0,0 +1,36 @@
|
||||
#
|
||||
# linter.py
|
||||
# Linter for SublimeLinter3, a code checking framework for Sublime Text 3
|
||||
#
|
||||
# Written by __user__
|
||||
# Copyright (c) __year__ __user__
|
||||
#
|
||||
# License: MIT
|
||||
#
|
||||
|
||||
"""This module exports the __class__ plugin class."""
|
||||
|
||||
from SublimeLinter.lint import __superclass__, util
|
||||
|
||||
|
||||
class __class__(__superclass__):
|
||||
|
||||
"""Provides an interface to __linter__."""
|
||||
|
||||
syntax = ''
|
||||
cmd = '__cmd__'
|
||||
executable = None
|
||||
version_args = '--version'
|
||||
version_re = r'(?P<version>\d+\.\d+\.\d+)'
|
||||
version_requirement = '>= 1.0'
|
||||
regex = r''
|
||||
multiline = False
|
||||
line_col_base = (1, 1)
|
||||
tempfile_suffix = None
|
||||
error_stream = util.STREAM_BOTH
|
||||
selectors = {}
|
||||
word_re = None
|
||||
defaults = {}
|
||||
inline_settings = None
|
||||
inline_overrides = None
|
||||
__extra_attributes__
|
||||
Reference in New Issue
Block a user