32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
import sublime
|
|
import sublime_plugin
|
|
|
|
from .PrettyJson import PrettyJsonBaseCommand
|
|
|
|
s = sublime.load_settings("Pretty JSON.sublime-settings")
|
|
|
|
class PrettyJsonLintListener(sublime_plugin.EventListener, PrettyJsonBaseCommand):
|
|
def on_post_save(self, view):
|
|
validate = s.get('validate_on_save', True)
|
|
as_json = s.get('as_json', ['JSON'])
|
|
if validate and any(
|
|
syntax in view.settings().get("syntax") for syntax in as_json
|
|
):
|
|
self.view = view
|
|
PrettyJsonBaseCommand.clear_phantoms(self)
|
|
json_content = self.view.substr(sublime.Region(0, self.view.size()))
|
|
try:
|
|
self.json_loads(json_content)
|
|
except Exception as ex:
|
|
self.show_exception(msg=ex)
|
|
|
|
|
|
class PrettyJsonAutoPrettyOnSaveListener(sublime_plugin.EventListener):
|
|
def on_pre_save(self, view):
|
|
auto_pretty = s.get('pretty_on_save', False)
|
|
as_json = s.get('as_json', ['JSON'])
|
|
if auto_pretty and any(
|
|
syntax in view.settings().get('syntax') for syntax in as_json
|
|
):
|
|
sublime.active_window().run_command('pretty_json')
|