mirror of
https://github.com/sstent/sublime-text-3.git
synced 2026-01-25 14:41:38 +00:00
33 lines
617 B
Python
33 lines
617 B
Python
#
|
|
# 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',
|
|
]
|