1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Eslint review, round 1 (#58168)

This commit is contained in:
Kevin Heis
2025-10-27 15:01:39 -07:00
committed by GitHub
parent f57c6ec88f
commit 232a0f8516
73 changed files with 246 additions and 182 deletions

View File

@@ -8,7 +8,7 @@
*
*/
import * as github from '@actions/github'
import github from '@actions/github'
import core from '@actions/core'
import { program } from 'commander'

View File

@@ -20,7 +20,7 @@ describe('data-directory', () => {
})
test('option: preprocess function', async () => {
const preprocess = function (content: string) {
function preprocess(content: string) {
return content.replace('markdown', 'MARKDOWN')
}
const data = dataDirectory(fixturesDir, { preprocess })