-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project configurations and settings
- Updated ESLint configuration to include additional rules and plugins, along with a change in ECMAScript version support. - Modified .gitignore to refine ignored files and directories. - Added new VS Code extensions to enhance developer productivity. - Adjusted VS Code settings for a customized appearance. - Removed unnecessary MongoDB connection handling in the codebase. - Deleted unused files related to MongoDB connection handling. - Removed obsolete project entry file. - Consolidated and refined project setup and tooling configurations as per recent project requirements. Issue: #123
- Loading branch information
1 parent
c54456b
commit ee2c484
Showing
79 changed files
with
1,253 additions
and
3,214 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ | |
|
||
npm --no-git-tag-version version minor | ||
git add . | ||
npx lint-staged | ||
# npx lint-staged |
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
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,57 +1,8 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
"eslint.validate": [ | ||
"javascript", | ||
"typescript" | ||
], | ||
"editor.formatOnSave": true, | ||
"[javascript]": { | ||
"editor.formatOnSave": false | ||
}, | ||
"[typescript]": { | ||
"editor.formatOnSave": false | ||
}, | ||
"[markdown]": { | ||
"editor.formatOnSave": false | ||
}, | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/bower_components": true, | ||
"**/dist": true, | ||
"**/coverage": true | ||
}, | ||
"typescript.referencesCodeLens.enabled": true, | ||
"appService.zipIgnorePattern": [ | ||
".vscode{,/**}" | ||
], | ||
"appService.deploySubpath": "", | ||
"jest.jestCommandLine": "jest test", | ||
"jest.rootPath": ".", | ||
"cSpell.words": [ | ||
"codeframe", | ||
"mvn", | ||
"myfont", | ||
"oracledb", | ||
"smoothstep", | ||
"tsc" | ||
], | ||
"mocha.enabled": true, | ||
"yaml.suggest.parentSkeletonSelectedFirst": true, | ||
"vsicons.projectDetection.autoReload": true, | ||
"workbench.editor.sharedViewState": true, | ||
"workbench.commandPalette.preserveInput": true, | ||
"rest-client.fontWeight": "400", | ||
"rest-client.fontSize": 11, | ||
"workbench.colorCustomizations": { | ||
"badge.background": "#445691", | ||
"statusBar.debuggingBackground": "#005f5f", | ||
"statusBar.debuggingForeground": "#ffffff", | ||
"statusBar.foreground": "#ffffff", | ||
"statusBar.noFolderBackground": "#005f5f", | ||
"tree.inactiveIndentGuidesStroke": "#571212", | ||
"tree.indentGuidesStroke": "#3f793f" | ||
"activityBar.background": "#122E53", | ||
"titleBar.activeBackground": "#194074", | ||
"titleBar.activeForeground": "#F8FAFD" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.