Package

@seedcord/eslint-config is the flat ESLint config seedcord projects run. createConfig builds the whole setup, and two options turn on the seedcord rules and the discord.js rules:
registerSeedcordPlugin applies @seedcord/eslint-plugin's recommended presetregisterDiscordjsPlugin applies eslint-plugin-discordjs's recommended presetcreate-seedcord writes a config that uses this.
Until v1.0.0, minor versions can break.
pnpm add -D @seedcord/eslint-config// eslint.config.js
import createConfig from '@seedcord/eslint-config';
export default createConfig({
registerSeedcordPlugin: true,
registerDiscordjsPlugin: true
});@seedcord/eslint-config/prettier holds the matching Prettier config.