Skip to content

Commit 243f6d3

Browse files
committed
Update ignore list
1 parent ee83755 commit 243f6d3

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

biome.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"includes": [
55
"**",
66
"!.cache/**/*",
7+
"!.nitro/**/*",
8+
"!.output/**/*",
9+
"!.tanstack/**/*",
710
"!coverage/**/*",
811
"!dist/**/*",
912
"!lib/**/*",

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import testingLibrary from 'eslint-plugin-testing-library';
1212
import markdown from '@eslint/markdown';
1313

1414
export default defineConfig([
15-
globalIgnores(['.cache', 'coverage', 'dist', 'lib']),
15+
globalIgnores(['.cache', '.nitro', '.output', '.tanstack', 'coverage', 'dist', 'lib']),
1616

1717
{
1818
linterOptions: {

website/routes/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { redirect } from '@tanstack/react-router';
22

33
export const Route = createFileRoute({
44
beforeLoad() {
5-
// throw redirect({ to: '/CommonFeatures' });
5+
// eslint-disable-next-line @typescript-eslint/only-throw-error
6+
throw redirect({ to: '/CommonFeatures' });
67
}
78
});

0 commit comments

Comments
 (0)