fix: resolve prettier and eslint conflict by removing bracketSpacing: false

This commit is contained in:
Naoki Oketani
2025-05-03 12:32:25 +00:00
parent 93b005545f
commit fa975d057b
8 changed files with 44 additions and 36 deletions

View File

@@ -1,11 +1,11 @@
import * as fs from 'fs'
import * as path from 'path'
import {Audit} from '../src/audit'
import {run} from '../src/main'
import { Audit } from '../src/audit'
import { run } from '../src/main'
import * as issue from '../src/issue'
import * as pr from '../src/pr'
import {fileURLToPath} from 'url'
import {dirname} from 'path'
import { fileURLToPath } from 'url'
import { dirname } from 'path'
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)