Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
086da56
Bump next from 15.1.4 to 15.2.3
dependabot[bot] Mar 21, 2025
fb1cb60
Merge pull request #145 from braican/dependabot/npm_and_yarn/next-15.2.3
braican Mar 24, 2025
b68ae6b
Bump next from 15.2.3 to 15.2.4
dependabot[bot] Apr 2, 2025
8f71d0d
Merge pull request #146 from braican/dependabot/npm_and_yarn/next-15.2.4
braican Apr 3, 2025
80cfaec
Bump @babel/runtime from 7.26.0 to 7.27.0
dependabot[bot] Apr 3, 2025
5d76eff
Merge pull request #147 from braican/dependabot/npm_and_yarn/babel/ru…
braican Apr 3, 2025
1bc058d
Bump next from 15.2.4 to 15.4.7
dependabot[bot] Aug 30, 2025
bfe18ad
Merge pull request #148 from braican/dependabot/npm_and_yarn/next-15.4.7
braican Sep 2, 2025
40a8f77
Bump js-yaml from 4.1.0 to 4.1.1
dependabot[bot] Nov 21, 2025
0cb7f00
Bump next from 15.4.7 to 15.4.9
dependabot[bot] Dec 12, 2025
60cd01a
Merge pull request #149 from braican/dependabot/npm_and_yarn/js-yaml-…
braican Jan 5, 2026
6fc0927
Merge pull request #151 from braican/dependabot/npm_and_yarn/next-15.4.9
braican Jan 5, 2026
8752311
Few style tweaks
braican Jan 5, 2026
1851c67
Swap sort order
braican Jan 5, 2026
cc90c43
Better totals styling
braican Jan 5, 2026
ead106b
Fix more ordering
braican Jan 5, 2026
fb32fc3
A few more aggregates
braican Jan 5, 2026
96d47e4
Upgrade to react 16
braican Jan 5, 2026
779b873
Add tsconfig
braican Jan 5, 2026
ecee2a0
Merge remote-tracking branch 'origin/develop' into year-end-fixes
braican Jan 5, 2026
c3bb86e
Merge pull request #153 from braican/year-end-fixes
braican Jan 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
import nextTypescript from "eslint-config-next/typescript";
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";

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

const compat = new FlatCompat({
baseDirectory: __dirname,
});

const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
];
const eslintConfig = [...nextCoreWebVitals, ...nextTypescript, {
ignores: ["node_modules/**", ".next/**", "out/**", "build/**", "next-env.d.ts"]
}];

export default eslintConfig;
Loading
Loading