mirror of
https://github.com/sstent/sublime-text-3.git
synced 2026-01-26 07:01:47 +00:00
backing up sublime settings
This commit is contained in:
32
Packages/SublimeLinter/lint/__init__.py
Normal file
32
Packages/SublimeLinter/lint/__init__.py
Normal 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',
|
||||
]
|
||||
Reference in New Issue
Block a user