-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update helpdesk logic to use Jira personal access tokens #712
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ module.exports = { | |
parserOptions: { | ||
ecmaVersion: 'latest', | ||
extraFileExtensions: ['.json'], | ||
project: ['./tsconfig.json'], | ||
project: ['./tsconfig.json', './tsconfig.eslint.json'], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this adds linting for the eslint and prettier config files themselves |
||
}, | ||
plugins: ['@typescript-eslint', 'prettier'], | ||
root: true, | ||
|
@@ -47,10 +47,10 @@ module.exports = { | |
'prettier/prettier': [ | ||
'error', | ||
{ | ||
printWidth: 100, | ||
trailingComma: 'all', | ||
printWidth: 120, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updates width. update for eslint to import prettier configs to be done in separate PR. |
||
semi: true, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
useTabs: true, | ||
}, | ||
], | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,9 @@ typings/ | |
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
# only .env will actually be loaded | ||
*.env* | ||
!**/.env.schema | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this allows for local backup files, etc. |
||
|
||
# next.js build output | ||
.next | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this replaces the email/pass combo. basic auth will be disabled by resIT for that API soon, and new tokens can be created using the credentials found in the argo prod vault.