-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added latest code for generate FLP Plugin removed unwanted code
- Loading branch information
Amar Ubhe
committed
Sep 11, 2024
1 parent
5c9521c
commit bbfba03
Showing
52 changed files
with
10,583 additions
and
1,013 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,3 +1,15 @@ | ||
# Hidden Files | ||
_ | ||
test/*/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Dependency directories | ||
node_modules/ | ||
yarn.lock | ||
package-lock.json | ||
|
||
.DS_Store |
This file contains 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 @@ | ||
npm run hooks:pre-commit |
This file contains 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,5 @@ | ||
if (process.env.HUSKY_SKIP || process.env.NODE_ENV === "production") { | ||
process.exit(0); | ||
} else { | ||
process.exit(1); | ||
} |
This file contains 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 |
---|---|---|
@@ -1 +1,4 @@ | ||
generators/newwebapp/templates/uimodule/ui5.yaml | ||
# Ignore test files | ||
test/*/ | ||
|
||
# Ignore all source files using the placeholders to kill the syntax |
This file contains 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,34 @@ | ||
import globals from "globals"; | ||
import js from "@eslint/js"; | ||
import jsdoc from "eslint-plugin-jsdoc"; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
jsdoc.configs["flat/recommended"], | ||
{ | ||
languageOptions: { | ||
globals: { | ||
...globals.node | ||
}, | ||
ecmaVersion: 2023, | ||
sourceType: "module" | ||
}, | ||
rules: { | ||
"no-unused-vars": "warn" | ||
} | ||
}, | ||
{ | ||
ignores: [ | ||
"eslint.config.js", | ||
|
||
// Ignore node_files | ||
"node_modules/", | ||
|
||
// Ignore templates | ||
"generators/*/templates/", | ||
|
||
// Ignore test files | ||
"test/" | ||
] | ||
} | ||
]; |
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
generators/additionalmodules/templates/approuter/package.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.