Skip to content

Commit

Permalink
Added latest code for generate FLP Plugin removed unwanted code
Browse files Browse the repository at this point in the history
  • Loading branch information
Amar Ubhe committed Sep 11, 2024
1 parent 5c9521c commit bbfba03
Show file tree
Hide file tree
Showing 52 changed files with 10,583 additions and 1,013 deletions.
16 changes: 14 additions & 2 deletions .gitignore
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
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm run hooks:pre-commit
5 changes: 5 additions & 0 deletions .husky/skip.js
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);
}
5 changes: 4 additions & 1 deletion .prettierignore
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
34 changes: 34 additions & 0 deletions eslint.config.mjs
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/"
]
}
];
194 changes: 0 additions & 194 deletions generators/additionalmodules/index.js

This file was deleted.

13 changes: 0 additions & 13 deletions generators/additionalmodules/templates/approuter/package.json

This file was deleted.

3 changes: 0 additions & 3 deletions generators/additionalmodules/templates/deployer/readme.md

This file was deleted.

18 changes: 0 additions & 18 deletions generators/additionalmodules/templates/xs-security.json

This file was deleted.

Loading

0 comments on commit bbfba03

Please sign in to comment.