forked from bitst0rm-pub/Formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormatter.sublime-commands
143 lines (143 loc) · 3.3 KB
/
Formatter.sublime-commands
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
[
{
"caption": "Formatter: Show Version Info",
"command": "show_version"
},
{
"caption": "Formatter: Open Config Files",
"command": "open_config_files"
},
{
"caption": "Formatter: Beautify With Beautysh",
"command": "run_format",
"args": {
"identifier": "beautysh"
}
},
{
"caption": "Formatter: Beautify With Black",
"command": "run_format",
"args": {
"identifier": "black"
}
},
{
"caption": "Formatter: Beautify With ClangFormat",
"command": "run_format",
"args": {
"identifier": "clangformat"
}
},
{
"caption": "Formatter: Beautify With CSScomb",
"command": "run_format",
"args": {
"identifier": "csscomb"
}
},
{
"caption": "Formatter: Beautify With ESLint",
"command": "run_format",
"args": {
"identifier": "eslint"
}
},
{
"caption": "Formatter: Beautify With HTML Tidy",
"command": "run_format",
"args": {
"identifier": "htmltidy"
}
},
{
"caption": "Formatter: Beautify With JS Beautifier",
"command": "run_format",
"args": {
"identifier": "jsbeautifier"
}
},
{
"caption": "Formatter: Beautify With JSONMax",
"command": "run_format",
"args": {
"identifier": "jsonmax"
}
},
{
"caption": "Formatter: Beautify With Perltidy",
"command": "run_format",
"args": {
"identifier": "perltidy"
}
},
{
"caption": "Formatter: Beautify With PHP CS Fixer",
"command": "run_format",
"args": {
"identifier": "phpcsfixer"
}
},
{
"caption": "Formatter: Beautify With Prettier",
"command": "run_format",
"args": {
"identifier": "prettier"
}
},
{
"caption": "Formatter: Beautify With RuboCop",
"command": "run_format",
"args": {
"identifier": "rubocop"
}
},
{
"caption": "Formatter: Beautify With Stylelint",
"command": "run_format",
"args": {
"identifier": "stylelint"
}
},
{
"caption": "Formatter: Beautify With Uncrustify",
"command": "run_format",
"args": {
"identifier": "uncrustify"
}
},
{
"caption": "Formatter: Beautify With YAPF",
"command": "run_format",
"args": {
"identifier": "yapf"
}
},
{
"caption": "Formatter: Minify With Clean CSS",
"command": "run_format",
"args": {
"identifier": "cleancss"
}
},
{
"caption": "Formatter: Minify With HTMLMinifier",
"command": "run_format",
"args": {
"identifier": "htmlminifier"
}
},
{
"caption": "Formatter: Minify With JSONMin",
"command": "run_format",
"args": {
"identifier": "jsonmin"
}
},
{
"caption": "Formatter: Minify With Terser",
"command": "run_format",
"args": {
"identifier": "terser"
}
}
]