Skip to content

Commit

Permalink
Merge branch 'dev' into add-doctor-details-page
Browse files Browse the repository at this point in the history
  • Loading branch information
ismayito authored Feb 12, 2024
2 parents 816d164 + e14752f commit 4f09ed0
Show file tree
Hide file tree
Showing 19 changed files with 5,809 additions and 4,002 deletions.
18 changes: 10 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,26 @@
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": ["airbnb", "plugin:react/recommended", "plugin:react-hooks/recommended"],
"extends": [
"airbnb",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"plugins": ["react"],
"rules": {
"react/jsx-filename-extension": ["warn", { "extensions": [".js", ".jsx"] }],
"react/react-in-jsx-scope": "off",
"import/no-unresolved": "off",
"no-shadow": "off"
"no-shadow": "off",
"jsx-a11y/label-has-associated-control": "warn"
},
"overrides": [
{
// feel free to replace with your preferred file pattern - eg. 'src/**/*Slice.js' or 'redux/**/*Slice.js'
// feel free to replace with your preferred file pattern - eg. 'src/**/*Slice.js' or 'redux/**/*Slice.js'
"files": ["src/**/*Slice.js"],
// avoid state param assignment
"rules": { "no-param-reassign": ["error", { "props": false }] }
}
],
"ignorePatterns": [
"dist/",
"build/"
]
}
"ignorePatterns": ["dist/", "build/"]
}
Loading

0 comments on commit 4f09ed0

Please sign in to comment.