Skip to content

Commit

Permalink
Merge pull request #97 from CityOfLosAngeles/ghi63-reuse-tokens
Browse files Browse the repository at this point in the history
Reuse Tokens & Misc. Changes
  • Loading branch information
cbhernan authored Apr 10, 2024
2 parents 1adeb17 + 4ee5cbe commit ab51b44
Show file tree
Hide file tree
Showing 21 changed files with 576 additions and 446 deletions.
26 changes: 15 additions & 11 deletions functions/auth0/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,28 @@ module.exports = {
node: true,
},
parserOptions: {
"ecmaVersion": 2020,
'ecmaVersion': 2020,
},
extends: [
"eslint:recommended",
"google",
'eslint:recommended',
'google',
],
rules: {
"no-restricted-globals": ["error", "name", "length"],
"prefer-arrow-callback": "error",
"quotes": ["error", "double", {"allowTemplateLiterals": true}],
"comma-dangle": 0,
"require-jsdoc": 0,
"one-var": 0,
"linebreak-style": 0
'no-restricted-globals': ['error', 'name', 'length'],
'prefer-arrow-callback': 'error',
'comma-dangle': 0,
'require-jsdoc': 0,
'one-var': 0,
'linebreak-style': 0,
'quotes': [2, 'single', {
'avoidEscape': true,
'allowTemplateLiterals': true
}],
'indent': [1],
},
overrides: [
{
files: ["**/*.spec.*"],
files: ['**/*.spec.*'],
env: {
mocha: true,
},
Expand Down
Loading

0 comments on commit ab51b44

Please sign in to comment.