-
Notifications
You must be signed in to change notification settings - Fork 126
/
phpcs.py
868 lines (675 loc) · 26.6 KB
/
phpcs.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
import datetime
import os
import re
import subprocess
import threading
import time
import sublime
import sublime_plugin
import sys
try:
from HTMLParser import HTMLParser
except:
from html.parser import HTMLParser
from os.path import expanduser
class Pref:
project_file = None
keys = [
"show_debug",
"extensions_to_execute",
"extensions_to_blacklist",
"phpcs_execute_on_save",
"phpcs_show_errors_on_save",
"phpcs_show_gutter_marks",
"phpcs_outline_for_errors",
"phpcs_show_errors_in_status",
"phpcs_show_quick_panel",
"phpcs_php_prefix_path",
"phpcs_commands_to_php_prefix",
"phpcs_icon_scope_color",
"phpcs_sniffer_run",
"phpcs_command_on_save",
"phpcs_executable_path",
"phpcs_additional_args",
"php_cs_fixer_on_save",
"php_cs_fixer_show_quick_panel",
"php_cs_fixer_executable_path",
"php_cs_fixer_additional_args",
"phpcbf_on_save",
"phpcbf_show_quick_panel",
"phpcbf_executable_path",
"phpcbf_additional_args",
"phpcs_linter_run",
"phpcs_linter_command_on_save",
"phpcs_php_path",
"phpcs_linter_regex",
"phpmd_run",
"phpmd_command_on_save",
"phpmd_executable_path",
"phpmd_additional_args",
]
def load(self):
self.settings = sublime.load_settings("phpcs.sublime-settings")
if (
sublime.active_window() is not None
and sublime.active_window().active_view() is not None
):
project_settings = sublime.active_window().active_view().settings()
if project_settings.has("phpcs"):
project_settings.clear_on_change("phpcs")
self.project_settings = project_settings.get("phpcs")
project_settings.add_on_change("phpcs", pref.load)
else:
self.project_settings = {}
else:
self.project_settings = {}
for key in self.keys:
self.settings.clear_on_change(key)
setattr(self, key, self.get(key))
self.settings.add_on_change(key, pref.load)
def get(self, key):
if key in self.project_settings:
return self.project_settings.get(key)
else:
return self.settings.get(key)
def set(self, key, value):
if key in self.project_settings:
self.project_settings[key] = value
else:
self.settings.set(key, value)
pref = Pref()
st_version = 2
if sublime.version() == "" or int(sublime.version()) > 3000:
st_version = 3
if st_version == 2:
pref.load()
def plugin_loaded():
pref.load()
def debug_message(msg):
if pref.get("show_debug") == True:
print("[Phpcs] " + str(msg))
class CheckstyleError:
"""Represents an error that needs to be displayed on the UI for the user"""
def __init__(self, line, message):
self.line = line
self.message = message
def get_line(self):
return self.line
def get_message(self):
data = self.message
if st_version == 3:
return HTMLParser().unescape(data)
else:
try:
data = data.decode("utf-8")
except UnicodeDecodeError:
data = data.decode(
sublime.active_window()
.active_view()
.settings()
.get("fallback_encoding")
)
return HTMLParser().unescape(data)
def set_point(self, point):
self.point = point
def get_point(self):
return self.point
class ShellCommand:
"""Base class for shelling out a command to the terminal"""
def __init__(self):
self.error_list = []
# Default the working directory for the shell command to the user's home dir.
self.workingDir = expanduser("~")
def setWorkingDir(self, dir):
self.workingDir = dir
def get_errors(self, path):
self.execute(path)
return self.error_list
def shell_out(self, cmd):
data = None
for i, arg in enumerate(cmd):
if isinstance(arg, str) and arg.startswith("~"):
cmd[i] = os.path.expanduser(arg)
if st_version == 3:
debug_message(" ".join(cmd))
else:
for index, arg in enumerate(cmd[:]):
cmd[index] = arg.encode(sys.getfilesystemencoding())
debug_message(" ".join(cmd))
debug_message(" ".join(cmd))
info = None
if os.name == "nt":
info = subprocess.STARTUPINFO()
info.dwFlags |= subprocess.STARTF_USESHOWWINDOW
info.wShowWindow = subprocess.SW_HIDE
debug_message("cwd: " + self.workingDir)
proc = subprocess.Popen(
cmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
startupinfo=info,
cwd=self.workingDir,
)
if proc.stdout:
data = proc.communicate()[0]
if st_version == 3:
return data.decode()
else:
return data
def execute(self, path):
debug_message("Command not implemented")
class Sniffer(ShellCommand):
"""Concrete class for PHP_CodeSniffer"""
def execute(self, path):
if pref.get("phpcs_sniffer_run") != True:
return
args = self.get_executable_args()
args.append("--report=checkstyle")
# Add the additional arguments from the settings file to the command
for key, value in pref.get("phpcs_additional_args").items():
arg = key
if key == "--runtime-set":
args.append(arg)
args.append(value)
elif value != "":
arg += "=" + value
args.append(arg)
target = os.path.normpath(path)
# Set the working directory for the command to the path of the target file, allowing
# phpcs the opportunity to find a default configuration file (phpcs.xml) in the file's path.
self.setWorkingDir(os.path.dirname(target))
args.append(target)
self.parse_report(args)
def get_executable_args(self):
"""
Figure out how we are going to construct the executable path for phpcs
"""
args = []
if pref.get(
"phpcs_php_prefix_path"
) != "" and self.__class__.__name__ in pref.get("phpcs_commands_to_php_prefix"):
args = [pref.get("phpcs_php_prefix_path")]
if pref.phpcs_executable_path != "":
application_path = pref.get("phpcs_executable_path")
else:
application_path = "phpcs"
if len(args) > 0:
args.append(application_path)
else:
args = [application_path]
return args
def parse_report(self, args):
report = self.shell_out(args)
debug_message(report)
lines = re.finditer(
'.*line="(?P<line>\d+)" column="(?P<column>\d+)" severity="(?P<severity>\w+)" message="(?P<message>.*)" source',
report,
)
for line in lines:
error = CheckstyleError(line.group("line"), line.group("message"))
self.error_list.append(error)
def get_standards_available(self):
args = self.get_executable_args()
args.append("-i")
output = self.shell_out(args)
standards = output[35:].replace(" and ", ", ").strip().split(", ")
return standards
class Fixer(ShellCommand):
"""Concrete class for PHP-CS-Fixer"""
def execute(self, path):
args = []
if pref.get(
"phpcs_php_prefix_path"
) != "" and self.__class__.__name__ in pref.get("phpcs_commands_to_php_prefix"):
args = [pref.get("phpcs_php_prefix_path")]
if pref.get("php_cs_fixer_executable_path") != "":
if len(args) > 0:
args.append(pref.get("php_cs_fixer_executable_path"))
else:
args = [pref.get("php_cs_fixer_executable_path")]
else:
debug_message(
"php_cs_fixer_executable_path is not set, therefore cannot execute"
)
sublime.error_message(
'The "php_cs_fixer_executable_path" is not set, therefore cannot execute this command'
)
return
args.append("fix")
args.append(os.path.normpath(path))
args.append("--verbose")
# Add the additional arguments from the settings file to the command
for key, value in pref.get("php_cs_fixer_additional_args").items():
arg = key
if value != "":
arg += "=" + value
args.append(arg)
self.parse_report(args)
def parse_report(self, args):
report = self.shell_out(args)
debug_message(report)
lines = re.finditer(".*(?P<line>\d+)\) (?P<file>.*)", report)
for line in lines:
error = CheckstyleError(line.group("line"), line.group("file"))
self.error_list.append(error)
class CodeBeautifier(ShellCommand):
"""Concrete class for phpcbf"""
def execute(self, path):
args = []
if pref.get(
"phpcs_php_prefix_path"
) != "" and self.__class__.__name__ in pref.get("phpcs_commands_to_php_prefix"):
args = [pref.get("phpcs_php_prefix_path")]
if pref.get("phpcbf_executable_path") != "":
if len(args) > 0:
args.append(pref.get("phpcbf_executable_path"))
else:
args = [pref.get("phpcbf_executable_path")]
else:
debug_message("phpcbf_executable_path is not set, therefore cannot execute")
sublime.error_message(
'The "phpcbf_executable_path" is not set, therefore cannot execute this command'
)
return
args.append(os.path.normpath(path))
# Add the additional arguments from the settings file to the command
for key, value in pref.get("phpcbf_additional_args").items():
arg = key
if value != "":
arg += "=" + value
args.append(arg)
self.parse_report(args)
def parse_report(self, args):
report = self.shell_out(args)
debug_message(report)
lines = re.finditer(".*\((?P<number>\d+) fixable violations\)", report)
for line in lines:
error = CheckstyleError(0, line.group("number") + " fixed violations")
self.error_list.append(error)
class MessDetector(ShellCommand):
"""Concrete class for PHP Mess Detector"""
def execute(self, path):
if pref.get("phpmd_run") != True:
return
args = []
if pref.get(
"phpcs_php_prefix_path"
) != "" and self.__class__.__name__ in pref.get("phpcs_commands_to_php_prefix"):
args = [pref.get("phpcs_php_prefix_path")]
if pref.get("phpmd_executable_path") != "":
application_path = pref.get("phpmd_executable_path")
else:
application_path = "phpmd"
if len(args) > 0:
args.append(application_path)
else:
args = [application_path]
args.append(os.path.normpath(path))
args.append("text")
for key, value in pref.get("phpmd_additional_args").items():
arg = key
if value != "":
arg += "=" + value
args.append(arg)
self.parse_report(args)
def parse_report(self, args):
report = self.shell_out(args)
debug_message(report)
lines = re.finditer(".*:(?P<line>\d+)[ \t]+(?P<message>.*)", report)
for line in lines:
error = CheckstyleError(line.group("line"), line.group("message"))
self.error_list.append(error)
class Linter(ShellCommand):
"""Content class for php -l"""
def execute(self, path):
if pref.get("phpcs_linter_run") != True:
return
if pref.get("phpcs_php_path") != "":
args = [pref.get("phpcs_php_path")]
else:
args = ["php"]
args.append("-l")
args.append("-d display_errors=On")
args.append(os.path.normpath(path))
self.parse_report(args)
def parse_report(self, args):
report = self.shell_out(args)
debug_message(report)
line = re.search(pref.get("phpcs_linter_regex"), report)
if line != None:
error = CheckstyleError(line.group("line"), line.group("message"))
self.error_list.append(error)
class PhpcsCommand:
"""Main plugin class for building the checkstyle report"""
# Class variable, stores the instances.
instances = {}
@staticmethod
def instance(view, allow_new=True):
"""Return the last-used instance for a given view."""
view_id = view.id()
if view_id not in PhpcsCommand.instances:
if not allow_new:
return False
PhpcsCommand.instances[view_id] = PhpcsCommand(view)
return PhpcsCommand.instances[view_id]
def __init__(self, view):
self.view = view
self.checkstyle_reports = []
self.report = []
self.event = None
self.error_lines = {}
self.error_list = []
self.shell_commands = ["Linter", "Sniffer", "MessDetector"]
self.standards = []
def run(self, path, event=None):
self.event = event
self.checkstyle_reports = []
self.report = []
if event != "on_save":
if pref.get("phpcs_linter_run"):
self.checkstyle_reports.append(
["Linter", Linter().get_errors(path), "dot"]
)
if pref.get("phpcs_sniffer_run"):
self.checkstyle_reports.append(
["Sniffer", Sniffer().get_errors(path), "dot"]
)
if pref.get("phpmd_run"):
self.checkstyle_reports.append(
["MessDetector", MessDetector().get_errors(path), "dot"]
)
else:
if pref.get("phpcs_linter_command_on_save") and pref.get(
"phpcs_linter_run"
):
self.checkstyle_reports.append(
["Linter", Linter().get_errors(path), "dot"]
)
if pref.get("phpcs_command_on_save") and pref.get("phpcs_sniffer_run"):
self.checkstyle_reports.append(
["Sniffer", Sniffer().get_errors(path), "dot"]
)
if pref.get("phpmd_command_on_save") and pref.get("phpmd_run"):
self.checkstyle_reports.append(
["MessDetector", MessDetector().get_errors(path), "dot"]
)
sublime.set_timeout(self.generate, 0)
def clear_sniffer_marks(self):
for region in self.shell_commands:
self.view.erase_regions(region)
def set_status_bar(self):
if not pref.get("phpcs_show_errors_in_status"):
return
if self.view.is_scratch():
return
line = self.view.rowcol(self.view.sel()[0].end())[0]
errors = self.get_errors(line)
if errors:
self.view.set_status("Phpcs", errors)
else:
self.view.erase_status("Phpcs")
def generate(self):
self.error_list = []
region_set = []
self.error_lines = {}
for shell_command, report, icon in self.checkstyle_reports:
self.view.erase_regions("checkstyle")
self.view.erase_regions(shell_command)
debug_message(shell_command + " found " + str(len(report)) + " errors")
for error in report:
line = int(error.get_line())
pt = self.view.text_point(line - 1, 0)
region_line = self.view.line(pt)
region_set.append(region_line)
self.error_list.append("(" + str(line) + ") " + error.get_message())
error.set_point(pt)
self.report.append(error)
self.error_lines[line] = error.get_message()
if len(self.error_list) > 0:
icon = icon if pref.phpcs_show_gutter_marks else ""
outline = (
sublime.DRAW_OUTLINED
if pref.get("phpcs_outline_for_errors")
else sublime.HIDDEN
)
if pref.get("phpcs_show_gutter_marks") or pref.get(
"phpcs_outline_for_errors"
):
if pref.get("phpcs_icon_scope_color") == None:
debug_message(
"WARN: phpcs_icon_scope_color is not defined, so resorting to phpcs colour scope"
)
pref.set("phpcs_icon_scope_color", "phpcs")
self.view.add_regions(
shell_command,
region_set,
pref.get("phpcs_icon_scope_color"),
icon,
outline,
)
if pref.get("phpcs_show_quick_panel") == True:
# Skip showing the errors if we ran on save, and the option isn't set.
if self.event == "on_save" and not pref.get("phpcs_show_errors_on_save"):
return
self.show_quick_panel()
def show_quick_panel(self):
self.view.window().show_quick_panel(self.error_list, self.on_quick_panel_done)
def fix_standards_errors(self, tool, path):
self.error_lines = {}
self.error_list = []
self.report = []
if tool == "CodeBeautifier":
fixes = CodeBeautifier().get_errors(path)
else:
fixes = Fixer().get_errors(path)
for fix in fixes:
self.error_list.append(fix.get_message())
if pref.get("php_cs_fixer_show_quick_panel") == True:
self.show_quick_panel()
def display_coding_standards(self):
self.standards = Sniffer().get_standards_available()
self.view.window().show_quick_panel(
self.standards, self.on_coding_standard_change
)
def on_coding_standard_change(self, picked):
if picked == -1:
return
current_additional_args = pref.get("phpcs_additional_args")
current_additional_args["--standard"] = self.standards[picked].replace(" ", "")
pref.set("phpcs_additional_args", current_additional_args)
debug_message(current_additional_args)
def on_quick_panel_done(self, picked):
if picked == -1:
return
if len(self.report) > 0:
pt = self.report[picked].get_point()
self.view.sel().clear()
self.view.sel().add(sublime.Region(pt))
self.view.show(pt)
self.set_status_bar()
def get_errors(self, line):
if not line + 1 in self.error_lines:
return False
return self.error_lines[line + 1]
def get_next_error(self, line):
current_line = line + 1
cache_error = None
# todo: Need a way of getting the line count of the current file!
cache_line = 1000000
for error in self.report:
error_line = error.get_line()
if cache_error != None:
cache_line = cache_error.get_line()
if int(error_line) > int(current_line) and int(error_line) < int(
cache_line
):
cache_error = error
if cache_error != None:
pt = cache_error.get_point()
self.view.sel().clear()
self.view.sel().add(sublime.Region(pt))
self.view.show(pt)
class PhpcsTextBase(sublime_plugin.TextCommand):
"""Base class for Text commands in the plugin, mainly here to check php files"""
description = ""
def run(self, args):
debug_message("Not implemented")
def description(self):
if not PhpcsTextBase.should_execute(self.view):
return "Invalid file format"
else:
return self.description
@staticmethod
def should_execute(view):
if view.file_name() != None:
try:
ext = os.path.splitext(view.file_name())[1]
result = ext[1:] in pref.get("extensions_to_execute")
except:
debug_message("Is 'extensions_to_execute' setup correctly")
return False
for block in pref.get("extensions_to_blacklist"):
match = re.search(block, view.file_name())
if match != None:
return False
return result
return False
class PhpcsSniffThisFile(PhpcsTextBase):
"""Command to sniff the open file"""
description = "Sniff this file..."
def run(self, args):
cmd = PhpcsCommand.instance(self.view)
cmd.run(self.view.file_name())
def is_enabled(self):
return PhpcsTextBase.should_execute(self.view)
class PhpcsShowPreviousErrors(PhpcsTextBase):
"""Command to show the previous sniff errors."""
description = "Display sniff errors..."
def run(self, args):
cmd = PhpcsCommand.instance(self.view, False)
cmd.show_quick_panel()
def is_enabled(self):
"""This command is only enabled if it's a PHP buffer with previous errors."""
return (
PhpcsTextBase.should_execute(self.view)
and PhpcsCommand.instance(self.view, False)
and len(PhpcsCommand.instance(self.view, False).error_list) > 0
)
class PhpcsGotoNextErrorCommand(PhpcsTextBase):
"""Go to the next error from the current position"""
def run(self, args):
line = self.view.rowcol(self.view.sel()[0].end())[0]
cmd = PhpcsCommand.instance(self.view)
next_line = cmd.get_next_error(line)
def is_enabled(self):
"""This command is only enabled if it's a PHP buffer with previous errors."""
return (
PhpcsTextBase.should_execute(self.view)
and PhpcsCommand.instance(self.view, False)
and len(PhpcsCommand.instance(self.view, False).error_list) > 0
)
class PhpcsClearSnifferMarksCommand(PhpcsTextBase):
"""Command to clear the sniffer marks from the view"""
description = "Clear sniffer marks..."
def run(self, args):
cmd = PhpcsCommand.instance(self.view)
cmd.clear_sniffer_marks()
def is_enabled(self):
return PhpcsTextBase.should_execute(self.view)
class PhpcsFixThisFileCommand(PhpcsTextBase):
"""Command to use php-cs-fixer to 'fix' the file"""
description = "Fix coding standard issues (php-cs-fixer)"
def run(self, args, tool="Fixer"):
debug_message(tool)
cmd = PhpcsCommand.instance(self.view)
cmd.fix_standards_errors(tool, self.view.file_name())
def is_enabled(self):
return PhpcsTextBase.should_execute(self.view)
class PhpcsFixThisDirectoryCommand(sublime_plugin.WindowCommand):
"""Command to use php-cs-fixer to 'fix' the directory"""
def run(self, tool="Fixer", paths=[]):
cmd = PhpcsCommand.instance(self.window.active_view())
cmd.fix_standards_errors(tool, os.path.normpath(paths[0]))
def is_enabled(self):
if pref.get("php_cs_fixer_executable_path") != "":
return True
else:
return False
def is_visible(self, paths=[]):
return True
def description(self, paths=[]):
return "Fix this directory (PHP-CS-Fixer)"
class PhpcsTogglePlugin(PhpcsTextBase):
"""Command to toggle if plugin should execute on save"""
def run(self, edit, toggle=None):
if toggle == None:
if pref.get("phpcs_execute_on_save") == True:
pref.set("phpcs_execute_on_save", False)
else:
pref.set("phpcs_execute_on_save", True)
else:
if toggle:
pref.set("phpcs_execute_on_save", True)
else:
pref.set("phpcs_execute_on_save", False)
def is_enabled(self):
return PhpcsTextBase.should_execute(self.view)
def description(self, paths=[]):
if pref.get("phpcs_execute_on_save") == True:
description = "Turn Execute On Save Off"
else:
description = "Turn Execute On Save On"
return description
class PhpcsSwitchCodingStandard(PhpcsTextBase):
"""Ability to switch the coding standard for this session"""
def run(self, args):
cmd = PhpcsCommand.instance(self.view)
cmd.display_coding_standards()
def is_enabled(self):
return PhpcsTextBase.should_execute(self.view)
class PhpcsEventListener(sublime_plugin.EventListener):
"""Event listener for the plugin"""
def on_post_save(self, view):
if PhpcsTextBase.should_execute(view):
if pref.get("phpcs_execute_on_save") == True:
cmd = PhpcsCommand.instance(view)
thread = threading.Thread(
target=cmd.run, args=(view.file_name(), "on_save")
)
thread.start()
if (
pref.get("phpcs_execute_on_save") == True
and pref.get("php_cs_fixer_on_save") == True
):
cmd = PhpcsCommand.instance(view)
cmd.fix_standards_errors("Fixer", view.file_name())
if (
pref.get("phpcs_execute_on_save") == True
and pref.get("phpcbf_on_save") == True
):
cmd = PhpcsCommand.instance(view)
cmd.fix_standards_errors("CodeBeautifier", view.file_name())
def on_selection_modified(self, view):
if not PhpcsTextBase.should_execute(view):
return
cmd = PhpcsCommand.instance(view, False)
if isinstance(cmd, PhpcsCommand):
cmd.set_status_bar()
def on_pre_save(self, view):
"""Project based settings, currently able to see an API based way of doing this!"""
if not PhpcsTextBase.should_execute(view) or st_version == 2:
return
current_project_file = view.window().project_file_name()
debug_message("Project files:")
debug_message(" Current: " + str(current_project_file))
debug_message(" Last Known: " + str(pref.get("project_file")))
if current_project_file == None:
debug_message("No project file defined, therefore skipping reload")
return
if pref.get("project_file") == current_project_file:
debug_message("Project files are the same, skipping reload")
else:
debug_message("Project files have changed, commence the reload")
pref.load()
pref.set("project_file", current_project_file)