Skip to content

Commit

Permalink
chore: fix eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed May 2, 2024
1 parent 7bf6886 commit 7bebd4d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const antfu = require('@antfu/eslint-config').default
import antfu from '@antfu/eslint-config'

module.exports = antfu({
export default antfu({
ignores: ['sponsorkit', '**/sponsorkit/**'],
})
4 changes: 2 additions & 2 deletions src/renders/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { circlesRenderer } from './circles';
import { tiersRenderer } from './tiers';
import { circlesRenderer } from './circles'
import { tiersRenderer } from './tiers'

export const builtinRenderers = {
tiers: tiersRenderer,
Expand Down
1 change: 0 additions & 1 deletion src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { loadConfig } from './configs'
import { resolveAvatars, svgToPng } from './processing/image'
import type { SponsorkitConfig, SponsorkitMainConfig, SponsorkitRenderOptions, SponsorkitRenderer, Sponsorship } from './types'
import { guessProviders, resolveProviders } from './providers'
import { tiersRenderer } from './renders/tiers'
import { builtinRenderers } from './renders'

export {
Expand Down

0 comments on commit 7bebd4d

Please sign in to comment.