-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1626 RCRAInfo prod url fix and 'authAuth' fix to 'autoAuth' (#1627)
* update prod base URL and increment patch version * fix misspelled 'autoAuth' which was previously 'authAuth' * install eslint dependencies * add eslint development dependency for the project * update mock service worker and implement test to check authentication process
- Loading branch information
1 parent
d40fcfd
commit e062281
Showing
11 changed files
with
1,536 additions
and
205 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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"printWidth": 100, | ||
"singleQuote": true, | ||
"semi": true, | ||
"bracketSpacing": true, | ||
"bracketSameLine": false, | ||
"trailingComma": "es5", | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"*.yaml", | ||
"*.yml" | ||
], | ||
"options": { | ||
"singleQuote": true | ||
} | ||
} | ||
] | ||
} |
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,40 @@ | ||
import pluginJs from '@eslint/js'; | ||
import tsEslint from 'typescript-eslint'; | ||
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'; | ||
|
||
export default [ | ||
pluginJs.configs.recommended, | ||
...tsEslint.configs.recommended, | ||
...tsEslint.configs.stylistic, | ||
eslintPluginPrettierRecommended, | ||
{ | ||
name: 'ignore-outputs', | ||
ignores: ['**/build/', '**/dist/', '**/node_modules/', '**/.next/'], | ||
}, | ||
{ | ||
name: 'ts-migration-relax', | ||
files: ['**/*.{ts,tsx}'], | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-empty-interface': 'off', | ||
'@typescript-eslint/no-empty-function': 'off', | ||
}, | ||
}, | ||
{ | ||
name: 'ts-unused-vars', | ||
rules: { | ||
'@typescript-eslint/no-unused-vars': [ | ||
'error', | ||
{ | ||
args: 'all', | ||
argsIgnorePattern: '^_', | ||
caughtErrors: 'all', | ||
caughtErrorsIgnorePattern: '^_', | ||
destructuredArrayIgnorePattern: '^_', | ||
varsIgnorePattern: '^_', | ||
// ignoreRestSiblings: true, - if you want to ignore unused rest siblings | ||
}, | ||
], | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.