-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: start impleting new NodeSecure back-end * refactor: complete revamp of CLI commands * chore: update NodeSecure dependencies * refactor(lang): use new i18n.getLanguages method * chore: setup scanner Logger and old tree walker Spinners * chore: update @nodesecure/scanner (1.3.0 to 1.4.0) * chore: update @nodesecure/flags (1.0.0 to 1.1.0) * test: make it work with ESM * fix: front-end build * fix(httpServer): always open link when the server is listening * fix: Emojis legend menu * chore: update dependencies * chore: debug on CLIUI * ci: remove Node.js v12 and v15 * docs: update README * refactor(startHTTPServer): add options object & add openLink option * test: utils.js * test(commands): add summary test * refactor(test): use tape instead of jest * fix: eslint V7+ issue * chore: update dependencies * chore: update @nodesecure/scanner (1.5.0 to 2.0.0) * refactor: use @nodesecure/utils & enhance author management * chore: update @nodesecure/flags (1.2.0 to 2.0.0) * chore: update @nodesecure/scanner (2.0.1 to 2.1.0) * chore: use flags v2 and new scanner flags * refactor: use @nodesecure/vis-network * refactor(http): clean code - split controllers / middleware (#90) * chore(http): use http-server folder * chore(http): move root route * test(http): add first test * chore: add updated package.json * chore(http): finish root tests * chore: create context (AsyncLocalStorage) * feat(http): split data endpoint * chore(http): port middleware in split file * chore(http): remove useless spec test * chore(http): fix naming for root import * chore(http): add flags * revert: remove sinon deps * chore: add missing import comment * fix: move bundlephobia call in the backend (#92) * feat: add new routes and handle error * fix: pass httpie error to polka * feat: replace request * fix: delete forgotten console.log * revert: port context * fix(bundle): support for org namespace * chore: update dependencies * chore(cli): fix few minor issues Co-authored-by: Tony Gorez <[email protected]>
- Loading branch information
Showing
92 changed files
with
10,401 additions
and
8,826 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,9 +1,14 @@ | ||
# Editor configuration, see https://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_size = 4 | ||
indent_style = space | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
end_of_line = lf | ||
|
||
[*.md] | ||
max_line_length = off | ||
trim_trailing_whitespace = false |
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,10 +1,7 @@ | ||
{ | ||
"extends": "@slimio/eslint-config", | ||
"rules": { | ||
"jsdoc/require-jsdoc": "off", | ||
"require-atomic-updates": "off", | ||
"arrow-body-style": "off", | ||
"new-cap": "off", | ||
"no-invalid-this": "off" | ||
"extends": "@nodesecure/eslint-config", | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"requireConfigFile": false | ||
} | ||
} |
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
Oops, something went wrong.