backing up sublime settings

This commit is contained in:
2014-04-04 11:21:58 -04:00
commit 2cbece8593
274 changed files with 23793 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
#
# lint.__init__
# Part of SublimeLinter3, a code checking framework for Sublime Text 3
#
# Written by Ryan Hileman and Aparajita Fishman
#
# Project: https://github.com/SublimeLinter/SublimeLinter3
# License: MIT
#
"""This module exports the linter classes and the highlight, linter, persist and util submodules."""
from .linter import Linter
from .python_linter import PythonLinter
from .ruby_linter import RubyLinter
from . import (
highlight,
linter,
persist,
util,
)
__all__ = [
'highlight',
'Linter',
'PythonLinter',
'RubyLinter',
'linter',
'persist',
'util',
]