ignorer dist pour eslint

This commit is contained in:
C. Fuhrman 2025-01-31 15:48:38 -05:00
parent e88dafa01c
commit 896bd588bd

View file

@ -6,7 +6,11 @@ import pluginReact from "eslint-plugin-react";
/** @type {import('eslint').Linter.Config[]} */
export default [
{
files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"],
ignores: ["dist/**"], // Place this at the root level
},
{
files: ["src/**/*.{js,mjs,cjs,ts,jsx,tsx}"],
// ignores: ["./dist/**"],
languageOptions: {
globals: globals.browser,
},