-
Notifications
You must be signed in to change notification settings - Fork 0
fix(ci): fix mvnw permission denied and next lint workspace flag #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
50a45f2
fix(ci): fix mvnw permission denied and next lint workspace flag
DongDuong2001 3fb4722
fix(ci): set mvnw executable bit and normalize npm workspace flags
DongDuong2001 7bce2f9
fix(ci): use working-directory for next lint/build, use mvn instead o…
DongDuong2001 8963341
fix(ci): add eslint config for next lint and explicit jackson-databin…
DongDuong2001 1c02424
fix(ci): add H2 test config, fix contextLoads, fix CodeQL mvnw
DongDuong2001 f8befc2
fix(ci): resolve contextLoads failure and lint invalid directory error
DongDuong2001 6e22d95
fix(ci): fix lint path passthrough and Spring Boot context load failure
DongDuong2001 b0bb329
Potential fix for code scanning alert no. 1: Unused variable, import,…
DongDuong2001 30357ea
fix(ci): fix ESLint violations and Spring Boot OIDC discovery at startup
DongDuong2001 5e126b7
fix(ci): bypass npm workspace arg-forwarding bug and use @MockBean fo…
DongDuong2001 05c1b97
chore(deps): bump eslint from 10.0.0 to 10.0.1 (#26)
dependabot[bot] 3ad1b4e
chore(deps): bump lucide-react from 0.574.0 to 0.575.0 (#25)
dependabot[bot] a832385
chore(deps): bump @types/node from 25.2.3 to 25.3.0 (#24)
dependabot[bot] f031b09
chore(deps): bump the tailwind-ecosystem group with 2 updates (#23)
dependabot[bot] 019225e
chore(deps): bump lucide-react from 0.574.0 to 0.575.0 in /apps/web (…
dependabot[bot] 2cd7d0c
chore(deps): bump org.springframework.boot:spring-boot-starter-parent…
dependabot[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| import { dirname } from "path"; | ||
| import { fileURLToPath } from "url"; | ||
| import { FlatCompat } from "@eslint/eslintrc"; | ||
|
|
||
| const __filename = fileURLToPath(import.meta.url); | ||
| const __dirname = dirname(__filename); | ||
|
|
||
| const compat = new FlatCompat({ | ||
| baseDirectory: __dirname, | ||
| }); | ||
|
|
||
| const eslintConfig = [ | ||
| ...compat.extends("next/core-web-vitals", "next/typescript"), | ||
| ]; | ||
|
|
||
| export default eslintConfig; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: lab68dev/nexus-guard
Length of output: 69
🏁 Script executed:
Repository: lab68dev/nexus-guard
Length of output: 488
Add
@eslint/eslintrcas an explicitdevDependency.FlatCompatis imported directly from@eslint/eslintrc(line 3), but@eslint/eslintrcis not explicitly listed indevDependencies. It is only pulled in transitively viaeslint-config-next. A future dependency update could remove this transitive dependency and break this import. Add@eslint/eslintrcas an explicitdevDependencyinapps/web/package.json.🤖 Prompt for AI Agents