Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* text=auto
* text=auto eol=lf
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ This repository includes several tools to help maintain code quality:
- [ESLint](https://eslint.org/docs/latest/use/core-concepts/): Checks your front-end code for quality and common errors.
- [pre-commit](https://pre-commit.com/): Ensures code formatting and quality checks are run before committing (primarily for back-end code).
- [lint-staged](https://github.com/okonet/lint-staged): Runs Prettier and ESLint on staged files before each commit to prevent bad code from being pushed.
- Note: if you are a Mac user, and your commits are erroring out with the message `" not foundECURSIVE_EXEC_FIRST_FAIL  Command "lint-staged`, then you likely need to change your line-endings in `./husky/pre-commit` and `./husky/commit-msg` from CRLF to LF.
- Note: if you are a Mac user, and your commits are erroring out with the message `" not foundECURSIVE_EXEC_FIRST_FAIL  Command "lint-staged`, then you likely need to change your line-endings in `./husky/pre-commit` and `./husky/commit-msg` from CRLF to LF.
- [commitizen](https://www.conventionalcommits.org/en/v1.0.0/): This pre-commit hook uses conventional commit syntax. Check this link out to understand how to format your commit messages. Here are some common examples:
- `feat: Major feature added`
- `docs: Documentation changed/updated`
- `fix: Bug fixed and code restored to working state`
- `refactor(style): Changed some code around to adhere to better style`
- `chore: Some update/chore that you've been needing to do`
- `feat: Major feature added`
- `docs: Documentation changed/updated`
- `fix: Bug fixed and code restored to working state`
- `refactor(style): Changed some code around to adhere to better style`
- `chore: Some update/chore that you've been needing to do`

---

Expand Down
10 changes: 5 additions & 5 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@mui/x-data-grid": "^8.11.2",
"@mui/x-date-pickers": "^8.11.2",
"@mui/x-data-grid": "^8.11.3",
"@mui/x-date-pickers": "^8.11.3",
"@semoss/sdk": "1.0.0-beta.29",
"@semoss/sdk-react": "1.0.0-beta.20",
"css-loader": "^7.1.2",
"dayjs": "^1.11.18",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.8.2"
"react-router": "^7.9.1"
},
"devDependencies": {
"@types/node": "^24.3.1",
"@types/react": "^19.1.12",
"@types/node": "^24.5.1",
"@types/react": "^19.1.13",
"dotenv": "^17.2.2",
"html-webpack-plugin": "^5.6.4",
"ts-loader": "^9.5.4",
Expand Down
302 changes: 156 additions & 146 deletions client/pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions java/src/reactors/AbstractProjectReactor.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

import domain.base.ErrorCode;
import domain.base.ProjectException;

import java.util.List;
import java.util.Map;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import prerna.auth.User;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"typescript-eslint": "^8.43.0"
"typescript-eslint": "^8.44.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,html,css}": [
Expand Down
Loading