create-next-js-boilerplate
Version:
Next.js 16 Boilerplate with TypeScript, Chakra UI, ESLint, Prettier, Husky, and Cypress — a complete starter template to build fast, scalable, and modern web applications.
18 lines (16 loc) • 394 B
JavaScript
const pluginSecurity = require("eslint-plugin-security");
module.exports = [
// Ignore generated/build folders at the config level (flat config supports ignores)
{
ignores: [
"**/.next/**",
"**/node_modules/**",
"**/dist/**",
"**/coverage/**",
"**/.out/**",
"**/.build/**",
"**/public/**",
],
},
pluginSecurity.configs.recommended,
];