Skip to content

Commit f16ff22

Browse files
Merge pull request #9 from ArduinoDayPhilippines/dev
feat: add Coming Soon component and update CtaBanner, Hero, Location, and Navbar for upcoming event details
2 parents 16738ee + 5f2bbd4 commit f16ff22

17 files changed

Lines changed: 1748 additions & 870 deletions

eslint.config.mjs

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1+
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
2+
import nextTypescript from "eslint-config-next/typescript";
13
import { dirname } from "path";
24
import { fileURLToPath } from "url";
3-
import { FlatCompat } from "@eslint/eslintrc";
45

56
const __filename = fileURLToPath(import.meta.url);
67
const __dirname = dirname(__filename);
78

8-
const compat = new FlatCompat({
9-
baseDirectory: __dirname,
10-
});
11-
12-
const eslintConfig = [
13-
...compat.extends("next/core-web-vitals", "next/typescript"),
14-
];
9+
const eslintConfig = [...nextCoreWebVitals, ...nextTypescript, {
10+
ignores: ["node_modules/**", ".next/**", "out/**", "build/**", "next-env.d.ts"]
11+
}];
1512

1613
export default eslintConfig;

0 commit comments

Comments
 (0)