-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #312 from 0xSiO/master
QPPAUTH-3113 Remove Okta's jwt-verifier package from OAuth sample app, update Node.js and deps
- Loading branch information
Showing
10 changed files
with
604 additions
and
2,251 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nodejs 20.5.0 | ||
nodejs 22.2.0 |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import js from '@eslint/js'; | ||
import pluginPrettier from 'eslint-plugin-prettier/recommended'; | ||
import pluginNode from 'eslint-plugin-n'; | ||
import pluginSecurity from 'eslint-plugin-security'; | ||
import pluginUnicorn from 'eslint-plugin-unicorn'; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
pluginPrettier, | ||
pluginNode.configs['flat/recommended'], | ||
pluginSecurity.configs.recommended, | ||
pluginUnicorn.configs['flat/recommended'], | ||
{ | ||
rules: { | ||
'unicorn/no-null': 'off', | ||
'unicorn/prevent-abbreviations': 'off', | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.