Skip to content

Commit

Permalink
Merge pull request #892 from WildMeOrg/submission_page
Browse files Browse the repository at this point in the history
Submission page
  • Loading branch information
erinz2020 authored Nov 14, 2024
2 parents ec59bd3 + 261e612 commit 4d752d2
Show file tree
Hide file tree
Showing 55 changed files with 5,898 additions and 212 deletions.
22 changes: 13 additions & 9 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,24 @@ export default [
pluginJs.configs.recommended,
pluginReactConfig,
{
files: ["**/*.{js,mjs,cjs,jsx}"],
files: ["**/*.{js,mjs,cjs,jsx}"],
plugins: {
"react-hooks": reactHooks,
"react-hooks": reactHooks,
},
languageOptions: {
globals: globals.browser,
globals: {
...globals.browser,
process: "readonly",
},
parser: babelParser,

},
settings: {
react: {
version: "detect"
}
},
},

rules: {
"semi": 2,
"react/prop-types": 0,
Expand Down Expand Up @@ -54,19 +58,19 @@ export default [
"no-param-reassign": 0,
"no-mixed-operators": 0,
"no-else-return": 0,

},
},
{
files: ['frontend/babel.config.js', 'frontend/jest.config.js', 'babel.config.js'], // Specify the config files
languageOptions: {
globals: {
require: "readonly",
require: "readonly",
module: "readonly",
__dirname: "readonly",
__dirname: "readonly",
process: "readonly",
},
},
},
},
{
files: ["**/__tests__/**/*.{js,jsx}", "**/*.test.{js,jsx}"],
Expand Down
Loading

0 comments on commit 4d752d2

Please sign in to comment.