Skip to content

Commit

Permalink
Bump lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
FrogTheFrog committed Jun 27, 2024
1 parent 8e17461 commit f859be0
Show file tree
Hide file tree
Showing 2 changed files with 1,732 additions and 1,389 deletions.
16 changes: 16 additions & 0 deletions eslint.config copy
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
import pluginReactConfig from "eslint-plugin-react/configs/recommended.js";
import { fixupConfigRules } from "@eslint/compat";

export default [
{
files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"]
},
{ languageOptions: { parserOptions: { ecmaFeatures: { jsx: true } } } },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
...fixupConfigRules(pluginReactConfig),
];
Loading

0 comments on commit f859be0

Please sign in to comment.