UNPKG

eslint-config-blazex

Version:

🔥 Blazex 🔥 eslint config that can be used across projects

17 lines (14 loc) • 284 B
import nextPlugin from '@next/eslint-plugin-next'; import react from './react.mjs'; import nextRules from './rules/next.mjs'; export default { ...react, plugins: { ...react.plugins, '@next/next': nextPlugin, }, rules: { ...nextRules, ...react.rules, }, };