forked from wearerequired/lint-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
287 lines (265 loc) · 7.75 KB
/
action.yml
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
name: Lint Action
author: Samuel Meuli
description: GitHub Action for detecting and fixing linting errors
inputs:
auto_fix:
description: Whether linters should try to fix code style issues automatically
required: false
default: false
commit_message:
description: 'Template for auto-fix commit messages. The "${linter}" variable can be used to insert the name of the linter which has created the auto-fix'
required: false
default: "Fix code style issues with ${linter}"
# CSS
stylelint:
description: Enable or disable stylelint checks
required: false
default: false
stylelint_args:
description: Additional arguments to pass to the linter
required: false
default: ""
stylelint_dir:
description: Directory where the stylelint command should be run
required: false
stylelint_extensions:
description: Extensions of files to check with stylelint
required: false
default: "css,sass,scss"
stylelint_command_prefix:
description: Shell command to prepend to the linter command
required: false
default: ""
# infer
infer:
description: enable or disable infer
required: false
default: false
infer_args:
description: command to run with infer
required: false
default: ""
infer_extensions:
description: Extensions of files to check with infer
required: false
default: "m,h"
# Go
gofmt:
description: Enable or disable gofmt checks
required: false
default: false
gofmt_args:
description: Additional arguments to pass to the linter
required: false
default: ""
gofmt_dir:
description: Directory where the gofmt command should be run
required: false
gofmt_extensions:
description: Extensions of files to check with gofmt
required: false
default: "go"
gofmt_command_prefix:
description: Shell command to prepend to the linter command
required: false
default: ""
golint:
description: Enable or disable golint checks
required: false
default: false
golint_args:
description: Additional arguments to pass to the linter
required: false
default: ""
golint_dir:
description: Directory where the golint command should be run
required: false
golint_extensions:
description: Extensions of files to check with golint
required: false
default: "go"
golint_command_prefix:
description: Shell command to prepend to the linter command
required: false
default: ""
# JavaScript
eslint:
description: Enable or disable ESLint checks
required: false
default: false
eslint_args:
description: Additional arguments to pass to the linter
required: false
default: ""
eslint_dir:
description: Directory where the ESLint command should be run
required: false
eslint_extensions:
description: Extensions of files to check with ESLint
required: false
default: "js"
eslint_command_prefix:
description: Shell command to prepend to the linter command. Will default to `npx --no-install` for NPM and `yarn run --silent` for Yarn.
required: false
default: ""
prettier:
description: Enable or disable Prettier checks
required: false
default: false
prettier_args:
description: Additional arguments to pass to the linter
required: false
default: ""
prettier_dir:
description: Directory where the Prettier command should be run
required: false
prettier_extensions:
description: Extensions of files to check with Prettier
required: false
default: "css,html,js,json,jsx,md,sass,scss,ts,tsx,vue,yaml,yml"
prettier_command_prefix:
description: Shell command to prepend to the linter command. Will default to `npx --no-install` for NPM and `yarn run --silent` for Yarn.
required: false
default: ""
xo:
description: Enable or disable XO checks
required: false
default: false
xo_args:
description: Additional arguments to pass to the linter
required: false
default: ""
xo_dir:
description: Directory where the XO command should be run
required: false
xo_extensions:
description: Extensions of files to check with XO
required: false
default: "js"
xo_command_prefix:
description: Shell command to prepend to the linter command. Will default to `npx --no-install` for NPM and `yarn run --silent` for Yarn.
required: false
default: ""
# Python
black:
description: Enable or disable Black checks
required: false
default: false
black_args:
description: Additional arguments to pass to the linter
required: false
default: ""
black_dir:
description: Directory where the Black command should be run
required: false
black_extensions:
description: Extensions of files to check with Black
required: false
default: "py"
black_command_prefix:
description: Shell command to prepend to the linter command
required: false
default: ""
flake8:
description: Enable or disable Flake8 checks
required: false
default: false
flake8_args:
description: Additional arguments to pass to the linter
required: false
default: ""
flake8_dir:
description: Directory where the Flake8 command should be run
required: false
flake8_extensions:
description: Extensions of files to check with Flake8
required: false
default: "py"
flake8_command_prefix:
description: Shell command to prepend to the linter command
required: false
default: ""
mypy:
description: Enable or disable Mypy checks
required: false
default: false
mypy_args:
description: Additional arguments to pass to the linter
required: false
default: ""
mypy_dir:
description: Directory where the Mypy command should be run
required: false
mypy_extensions:
description: Extensions of files to check with Mypy
required: false
default: "py"
mypy_command_prefix:
description: Shell command to prepend to the linter command
required: false
default: ""
# Ruby
rubocop:
description: Enable or disable RuboCop checks
required: false
default: false
rubocop_args:
description: Additional arguments to pass to the linter
required: false
default: ""
rubocop_dir:
description: Directory where the RuboCop command should be run
required: false
rubocop_extensions:
description: Extensions of files to check with RuboCop
required: false
default: "rb"
rubocop_command_prefix:
description: Shell command to prepend to the linter command
required: false
default: ""
# Swift
swiftformat:
description: Enable or disable SwiftFormat checks
required: false
default: false
swiftformat_args:
description: Additional arguments to pass to the linter
required: false
default: ""
swiftformat_dir:
description: Directory where the SwiftFormat command should be run
required: false
swiftformat_extensions:
description: Extensions of files to check with SwiftFormat
required: false
default: "swift"
swiftformat_command_prefix:
description: Shell command to prepend to the linter command
required: false
default: ""
swiftlint:
description: Enable or disable SwiftLint checks
required: false
default: false
swiftlint_args:
description: Additional arguments to pass to the linter
required: false
default: ""
swiftlint_dir:
description: Directory where the SwiftLint command should be run
required: false
swiftlint_extensions:
description: Extensions of files to check with SwiftLint
required: false
default: "swift"
swiftlint_command_prefix:
description: Shell command to prepend to the linter command
required: false
default: ""
runs:
using: node12
main: ./src/index.js
branding:
icon: check
color: green