Skip to content

Commit

Permalink
Merge pull request #49 from CMSgov/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
mint-thompson authored Nov 8, 2024
2 parents 76e5fb3 + 88953be commit 9a6f748
Show file tree
Hide file tree
Showing 4 changed files with 2,585 additions and 6,439 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
dist
node_modules
.vscode
28 changes: 28 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import react from "eslint-plugin-react"
import * as globals from 'globals';

export default [
{
files: ["**/*.{js,jsx,mjs,cjs,ts,tsx}"],
plugins: {
react,
},
languageOptions: {
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
requireConfigFile: false,
ecmaFeatures: {
jsx: true,
},
},
globals: {
...globals.browser,
},
},
rules: {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
},
},
]
Loading

0 comments on commit 9a6f748

Please sign in to comment.