@aetherjs/eslint-config
Version:
Standard ESLint config for Aether-Development projects.
19 lines (16 loc) • 395 B
JavaScript
import nextPlugin from '@next/eslint-plugin-next';
// src/nextjs.ts
var nextjs_default = [
{
files: ["**/*.ts", "**/*.tsx"],
plugins: {
"@next/next": nextPlugin
},
rules: {
...nextPlugin.configs.recommended.rules,
...nextPlugin.configs["core-web-vitals"].rules,
"@next/next/no-duplicate-head": "off"
}
}
];
export { nextjs_default as default };