Skip to content

Commit

Permalink
Hotfix changes to the main branch (#167)
Browse files Browse the repository at this point in the history
- hotfix changes -- resolving issues with sidebar, datagrid views, and datagrid interactions. adding missing synchronization to ensure even behavior across the app
- removing redundancy, updating modules
- Wide-scale repairs and changes. App behavior and structuring needs to be standardized, and generalized cleanup/reformatting was implemented.
- upgrading eslint (v9) caused system-wide errors, downgraded to v8
- also downgraded eslint plugins (some were compatible with v9, some weren't)
- applying eslint fixes across project (remove unused imports, etc)
- fixing no-null-asserted-optional-chain
- fixing prefer-const
- removing unneeded package.json commands (also attached fixed versions to all modules instead of using latest)
- continuing hotfix refinement. Clarifying datagrid view. Attempting to ensure that data is even across MSV datagrid output and date follows established convention
- continuing bug repairs and addressing missing or partially implemented behavior. core datagrid changes incoming, so saving changes here so that I can rewind if need be.
- remaining hotfix changes -- resolving core behavior and repairing census upload, validation processing, and all other file upload systems. remaining notes: need to add a conditional to the upload system to lock it when the census is closed/not opened
- resolving earlier commit note -- upload conditional added to lock function if census is not opened.
  • Loading branch information
siddheshraze authored Jun 14, 2024
1 parent 33dd2c0 commit 4024a89
Show file tree
Hide file tree
Showing 143 changed files with 8,757 additions and 7,842 deletions.
18 changes: 18 additions & 0 deletions frontend/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
parser: "@typescript-eslint/parser",
extends: ["next", "plugin:@typescript-eslint/recommended"],
settings: {
next: {
rootDir: "."
}
},
plugins: ["@typescript-eslint", "unused-imports"],
rules: {
"react-hooks/exhaustive-deps": "off",
"semi": ["error", "always"],
"unused-imports/no-unused-imports": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-vars": "off"
}
};
12 changes: 0 additions & 12 deletions frontend/.eslintrc.json

This file was deleted.

3 changes: 0 additions & 3 deletions frontend/Writerside/.idea/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions frontend/Writerside/.idea/Writerside.iml

This file was deleted.

8 changes: 0 additions & 8 deletions frontend/Writerside/.idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions frontend/Writerside/.idea/vcs.xml

This file was deleted.

6 changes: 0 additions & 6 deletions frontend/Writerside/c.list

This file was deleted.

11 changes: 0 additions & 11 deletions frontend/Writerside/fad.tree

This file was deleted.

Binary file removed frontend/Writerside/images/completion_procedure.png
Binary file not shown.
Binary file not shown.
Binary file removed frontend/Writerside/images/convert_table_to_xml.png
Binary file not shown.
Binary file not shown.
Binary file removed frontend/Writerside/images/new_topic_options.png
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 4024a89

Please sign in to comment.