Skip to content

Commit 682e6fd

Browse files
committed
Avoid trailing white-space
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 2a202e9 commit 682e6fd

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"sourceType": "module"
1010
},
1111
"rules": {
12-
"indent": ["error", 4]
12+
"indent": ["error", 4],
13+
"no-trailing-spaces": "error"
1314
}
1415
}

GitForWindowsHelper/check-runs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const updateCheckRun = async (context, token, owner, repo, checkRunId, parameter
5454
context,
5555
token,
5656
'PATCH',
57-
`/repos/${owner}/${repo}/check-runs/${checkRunId}`,
57+
`/repos/${owner}/${repo}/check-runs/${checkRunId}`,
5858
parameters
5959
)
6060
}

GitForWindowsHelper/slash-commands.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ module.exports = async (context, req) => {
186186
)
187187
return `I edited the comment: ${answer2.html_url}`
188188
}
189-
189+
190190
const x86_64Id = await queueCheckRun(
191191
context,
192192
await getToken(),
@@ -207,7 +207,7 @@ module.exports = async (context, req) => {
207207
`Build and deploy ${package_name}`,
208208
`Deploying ${package_name}`
209209
)
210-
210+
211211
const x86_64Answer = await triggerBuild('x86_64')
212212
const i686Answer = await triggerBuild('i686')
213213
const answer2 = await appendToComment(

0 commit comments

Comments
 (0)