Skip to content

Commit

Permalink
chore: update eslint rules and snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
woothu committed Jun 19, 2020
1 parent 04efc0f commit 833d98a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
'eslint:recommended'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-console': 'off',
'vue/return-in-computed-property': 'off',
},
parserOptions: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exports[`CWidgetProgress matches custom props snapshot 1`] = `
</div>
<div
class="progress progress-xs my-3 mb-0 progress-white"
class="progress-xs my-3 mb-0 progress progress-white"
>
<div
aria-valuemax="100"
Expand Down Expand Up @@ -55,7 +55,7 @@ exports[`CWidgetProgress matches default props snapshot 1`] = `
<!---->
<div
class="progress progress-xs my-3 mb-0"
class="progress-xs my-3 mb-0 progress"
>
<div
aria-valuemax="100"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exports[`CWidgetProgressIcon matches custom props snapshot 1`] = `
</small>
<div
class="progress progress-xs my-3 mb-0 progress-white"
class="progress-xs my-3 mb-0 progress progress-white"
>
<div
aria-valuemax="100"
Expand Down Expand Up @@ -56,7 +56,7 @@ exports[`CWidgetProgressIcon matches default props snapshot 1`] = `
<!---->
<div
class="progress progress-xs my-3 mb-0"
class="progress-xs my-3 mb-0 progress"
>
<div
aria-valuemax="100"
Expand Down

0 comments on commit 833d98a

Please sign in to comment.