Skip to content

Commit

Permalink
npm run lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mirko314 committed Jan 24, 2025
1 parent b0fbb24 commit 0eaa8ed
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/node-e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"jest": "^29.6.2"
},
"version": "1.5.8-rc.2"
}
}
2 changes: 1 addition & 1 deletion packages/node-examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
"uuidv4": "^6.2.13"
},
"version": "1.5.8-rc.2"
}
}
10 changes: 5 additions & 5 deletions packages/web-examples/next-example/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";
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,
baseDirectory: __dirname
});

const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
...compat.extends('next/core-web-vitals', 'next/typescript')
];

export default eslintConfig;
2 changes: 1 addition & 1 deletion packages/web-examples/next-example/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { NextConfig } from "next";
import type { NextConfig } from 'next';

const nextConfig: NextConfig = {
/* config options here */
Expand Down
2 changes: 1 addition & 1 deletion packages/web-examples/next-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
"eslint-config-next": "15.1.3",
"typescript": "^5"
}
}
}
2 changes: 1 addition & 1 deletion packages/web-examples/next-example/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@ button:focus-visible {
button {
background-color: #f9f9f9;
}
}
}

0 comments on commit 0eaa8ed

Please sign in to comment.