Skip to content

Commit

Permalink
fixing CI 2
Browse files Browse the repository at this point in the history
  • Loading branch information
griffindavidson committed Dec 30, 2024
1 parent 235b4f1 commit b477c85
Show file tree
Hide file tree
Showing 3 changed files with 1,934 additions and 3 deletions.
12 changes: 12 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import pluginReact from "eslint-plugin-react";


/** @type {import('eslint').Linter.Config[]} */
export default [
{files: ["**/*.{js,mjs,cjs,jsx}"]},
{languageOptions: { globals: {...globals.browser, ...globals.node} }},
pluginJs.configs.recommended,
pluginReact.configs.flat.recommended,
];
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ "name": "cancer-app",
"version": "0.1.0",
"private": true,
{
"name": "cancer-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
Expand All @@ -12,5 +13,11 @@
"openai": "^4.67.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0"
}
}
Loading

0 comments on commit b477c85

Please sign in to comment.