forked from elicwhite/ESLint-Formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ESLint-Formatter.py
312 lines (247 loc) · 10.2 KB
/
ESLint-Formatter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import sublime, sublime_plugin
import platform
import glob
import os, sys, subprocess, codecs, webbrowser
from subprocess import Popen, PIPE
try:
import commands
except ImportError:
pass
PROJECT_NAME = "ESLint-Formatter"
SETTINGS_FILE = PROJECT_NAME + ".sublime-settings"
KEYMAP_FILE = "Default ($PLATFORM).sublime-keymap"
IS_WINDOWS = platform.system() == 'Windows'
class FormatEslintCommand(sublime_plugin.TextCommand):
def run(self, edit):
# Save the current viewport position to scroll to it after formatting.
previous_selection = list(self.view.sel()) # Copy.
previous_position = self.view.viewport_position()
# Save the already folded code to refold it after formatting.
# Backup of folded code is taken instead of regions because the start and end pos
# of folded regions will change once formatted.
folded_regions_content = [self.view.substr(r) for r in self.view.folded_regions()]
# Get the current text in the buffer and save it in a temporary file.
# This allows for scratch buffers and dirty files to be linted as well.
entire_buffer_region = sublime.Region(0, self.view.size())
buffer_text = self.get_buffer_text(entire_buffer_region)
output = self.run_script_on_file(filename=self.view.file_name(), content=buffer_text)
# log output in debug mode
if PluginUtils.get_pref("debug"):
print(output)
# Supported by eslint_d
# https://github.com/mantoni/eslint_d.js#automatic-fixing
if not PluginUtils.get_pref('fix_to_stdout'):
# eslint currently does not print the fixed file to stdout, it just modifies the file.
return
# If the prettified text length is nil, the current syntax isn't supported.
if output == None or len(output) < 1:
return
# Replace the text only if it's different.
if output != buffer_text:
self.view.replace(edit, entire_buffer_region, output)
self.refold_folded_regions(folded_regions_content, output)
self.view.set_viewport_position((0, 0), False)
self.view.set_viewport_position(previous_position, False)
self.view.sel().clear()
# Restore the previous selection if formatting wasn't performed only for it.
# if not is_formatting_selection_only:
for region in previous_selection:
self.view.sel().add(region)
def get_buffer_text(self, region):
buffer_text = self.view.substr(region)
return buffer_text
def walk_up_for_config(self, cdir, configFile):
if (cdir is None or configFile is None):
return
files = [file for file in os.listdir(cdir) if os.path.isfile(os.path.join(cdir, file))]
if configFile in files:
return cdir
parent = os.path.dirname(cdir)
if (parent is cdir):
return parent
return self.walk_up_for_config(parent, configFile)
def get_lint_directory(self, filename):
cdir = os.path.dirname(filename)
while cdir:
if os.path.isfile(os.path.join(cdir, 'package.json')):
return cdir
parent = os.path.dirname(cdir)
if parent == cdir:
break
cdir = parent
return os.getcwd()
def run_script_on_file(self, filename=None, content=None):
try:
dirname = filename and os.path.dirname(filename)
node_path = PluginUtils.get_node_path()
eslint_path = PluginUtils.get_eslint_path(dirname)
if eslint_path == False:
sublime.error_message('ESLint could not be found on your path')
return
use_stdio = PluginUtils.get_pref('fix_to_stdout')
if not use_stdio and filename is None:
sublime.error_message('Cannot lint unsaved file')
# Better support globally-available eslint binaries that don't need to be invoked with node.
node_cmd = [node_path] if node_path else []
fix_params = ['--stdin', '--fix-to-stdout'] if use_stdio else ['--fix', filename]
if use_stdio and filename is not None: fix_params += ['--stdin-filename', filename]
cmd = node_cmd + [eslint_path] + fix_params
project_path = PluginUtils.project_path()
extra_args = PluginUtils.get_pref("extra_args")
if extra_args:
cmd += [arg.replace('$project_path', project_path) for arg in extra_args]
if PluginUtils.get_pref("debug"):
print('eslint command line', cmd)
config_path = PluginUtils.get_pref("config_path")
if os.path.isfile(config_path):
# If config file path exists, use as is
full_config_path = config_path
else:
# Find config gile relative to project path
full_config_path = os.path.join(project_path, config_path)
if os.path.isfile(full_config_path):
print("Using configuration from {0}".format(full_config_path))
cmd.extend(["--config", full_config_path])
cdir = self.get_lint_directory(filename)
if type(content) == str: content = content.encode('utf-8')
output = PluginUtils.get_output(cmd, cdir, content if use_stdio else None)
return output
except:
# Something bad happened.
msg = str(sys.exc_info()[1])
print("Unexpected error({0}): {1}".format(sys.exc_info()[0], msg))
sublime.error_message(msg)
def refold_folded_regions(self, folded_regions_content, entire_file_contents):
self.view.unfold(sublime.Region(0, len(entire_file_contents)))
region_end = 0
for content in folded_regions_content:
region_start = entire_file_contents.index(content, region_end)
if region_start > -1:
region_end = region_start + len(content)
self.view.fold(sublime.Region(region_start, region_end))
class ESLintFormatterEventListeners(sublime_plugin.EventListener):
@staticmethod
def should_run_command(view, pre_phase):
if not PluginUtils.get_pref("format_on_save"): return False
if bool(PluginUtils.get_pref("fix_to_stdout")) != pre_phase: return False
extensions = PluginUtils.get_pref("format_on_save_extensions")
extension = os.path.splitext(view.file_name())[1][1:]
# Default to using filename if no extension
if not extension:
extension = os.path.basename(view.file_name())
# Skip if extension is not listed
return not extensions or extension in extensions
@staticmethod
def on_pre_save(view):
if ESLintFormatterEventListeners.should_run_command(view, True):
view.run_command("format_eslint")
@staticmethod
def on_post_save(view):
if ESLintFormatterEventListeners.should_run_command(view, False):
view.run_command("format_eslint")
class PluginUtils:
@staticmethod
# Fetches root path of open project
def project_path(fallback=os.getcwd()):
project_data = sublime.active_window().project_data()
# if cannot find project data, use cwd
if project_data is None:
return fallback
folders = project_data['folders']
folder_path = folders[0]['path']
return folder_path
@staticmethod
def get_pref(key):
global_settings = sublime.load_settings(SETTINGS_FILE)
value = global_settings.get(key)
# Load active project settings
project_settings = sublime.active_window().active_view().settings()
# Overwrite global config value if it's defined
if project_settings.has(PROJECT_NAME):
value = project_settings.get(PROJECT_NAME).get(key, value)
return value
@staticmethod
def get_node_path():
platform = sublime.platform()
node = PluginUtils.get_pref("node_path").get(platform)
if type(node) == str:
print("Using node.js path on '" + platform + "': " + node)
else:
print("Not using explicit node.js path")
return node
# Convert path that possibly contains a user tilde and/or is a relative path into an absolute path.
def normalize_path(path, realpath=False):
if realpath:
return os.path.realpath(os.path.expanduser(path))
else:
project_dir = sublime.active_window().project_file_name()
if project_dir:
cwd = os.path.dirname(project_dir)
else:
cwd = os.getcwd()
return os.path.normpath(os.path.join(cwd, os.path.expanduser(path)))
# Yield path and every directory above path.
@staticmethod
def walk_up(path):
curr_path = path
while 1:
yield curr_path
curr_path, tail = os.path.split(curr_path)
if not tail:
break
# Find the first path matching a given pattern within dirname or the nearest ancestor of dirname.
@staticmethod
def findup(pattern, dirname=None):
if dirname is None:
project_path = PluginUtils.project_path()
normdn = PluginUtils.normalize_path(project_path)
else:
normdn = PluginUtils.normalize_path(dirname)
for d in PluginUtils.walk_up(normdn):
matches = glob.glob(os.path.join(d, pattern))
if matches:
return matches[0]
return None
@staticmethod
def get_local_eslint(dirname):
pkg = PluginUtils.findup('node_modules/eslint', dirname)
if pkg == None:
return None
else:
path = PluginUtils.get_pref("local_eslint_path").get(sublime.platform())
if not path: return None
d = os.path.dirname(os.path.dirname(pkg))
esl = os.path.join(d, path)
if os.path.isfile(esl):
return esl
else:
return None
@staticmethod
def get_eslint_path(dirname):
platform = sublime.platform()
eslint = dirname and PluginUtils.get_local_eslint(dirname)
# if local eslint not available, then using the settings config
if eslint == None:
eslint = PluginUtils.get_pref("eslint_path").get(platform)
print("Using eslint path on '" + platform + "': " + eslint)
return eslint
@staticmethod
def get_output(cmd, cdir, data):
try:
p = Popen(cmd,
stdout=PIPE, stdin=PIPE, stderr=PIPE,
cwd=cdir, shell=IS_WINDOWS)
except OSError:
raise Exception('Couldn\'t find Node.js. Make sure it\'s in your $PATH by running `node -v` in your command-line.')
stdout, stderr = p.communicate(input=data)
stdout = stdout.decode('utf-8')
stderr = stderr.decode('utf-8')
if stderr:
raise Exception('Error: %s' % stderr)
elif p.returncode == 127:
raise Exception('Error: %s' % (stderr or stdout))
else:
return stdout