Skip to content

Commit

Permalink
Merge pull request #312 from 0xSiO/master
Browse files Browse the repository at this point in the history
QPPAUTH-3113 Remove Okta's jwt-verifier package from OAuth sample app, update Node.js and deps
  • Loading branch information
john-manack authored May 30, 2024
2 parents 0c36b74 + d64310c commit c45709f
Show file tree
Hide file tree
Showing 10 changed files with 604 additions and 2,251 deletions.
16 changes: 0 additions & 16 deletions oauth_sample/.eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion oauth_sample/.tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 20.5.0
nodejs 22.2.0
2 changes: 1 addition & 1 deletion oauth_sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ For your application, you will only need to support **one** of these flows.

## Requirements

This application has been tested on Node.js v20.5.0.
This application has been tested on Node.js v22.2.0.

## Getting started

Expand Down
19 changes: 19 additions & 0 deletions oauth_sample/eslint.config.js
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',
},
},
];
Loading

0 comments on commit c45709f

Please sign in to comment.