eslint-config-neon
Version:
The ultimate ESLint shareable config
33 lines (31 loc) • 940 B
JavaScript
;
//#region src/oxlint/next.ts
const config = {
plugins: ["import", "nextjs"],
rules: {
"import/extensions": 0,
"import-x/extensions": 0,
"nextjs/google-font-display": 1,
"nextjs/google-font-preconnect": 1,
"nextjs/inline-script-id": 2,
"nextjs/next-script-for-ga": 1,
"nextjs/no-assign-module-variable": 2,
"nextjs/no-before-interactive-script-outside-document": 2,
"nextjs/no-css-tags": 1,
"nextjs/no-document-import-in-page": 2,
"nextjs/no-duplicate-head": 2,
"nextjs/no-head-import-in-document": 2,
"nextjs/no-html-link-for-pages": 0,
"nextjs/no-img-element": 1,
"nextjs/no-page-custom-font": 1,
"nextjs/no-script-component-in-head": 2,
"nextjs/no-styled-jsx-in-document": 2,
"nextjs/no-sync-scripts": 2,
"nextjs/no-title-in-document-head": 2,
"nextjs/no-typos": 2,
"nextjs/no-unwanted-polyfillio": 2
}
};
//#endregion
module.exports = config;
//# sourceMappingURL=next.cjs.map