Skip to content
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

Security: Update vue cli related packages #1328

Merged
merged 12 commits into from
Sep 9, 2022
6 changes: 3 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'prettier/prettier': [
'error',
'warn',
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The update in the vue-cli created a bunch of prettier errors that broke our build. This switches them to 'warn' so that we can still build the ui and add the update.

{
singleQuote: true,
semi: false,
Expand All @@ -23,8 +23,8 @@ module.exports = {
htmlWhitespaceSensitivity: 'strict'
}
],
quotes: ['error', 'single', { avoidEscape: true }],
semi: ['error', 'never'],
quotes: ['warn', 'single', { avoidEscape: true }],
semi: ['warn', 'never'],
'vuetify/grid-unknown-attributes': 'error',
'vuetify/no-deprecated-classes': 'error',
'vue/valid-v-slot': 'off'
Expand Down
Loading