Skip to content

Commit

Permalink
Change eslintrc to allow consistent quotes in objects
Browse files Browse the repository at this point in the history
  • Loading branch information
timbeccue committed Oct 2, 2022
1 parent 82b55e3 commit 93601f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ module.exports = {
'camelcase': 'off',
'eqeqeq': 'off',
'brace-style': 'off',
'quote-props': ['error', 'consistent'],
'vue/require-prop-type-constructor': 'off',
'vue/prop-name-casing': 'off',
'vue/require-default-prop': 'off',
Expand Down
2 changes: 1 addition & 1 deletion src/mixins/commands_mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const commands_mixin = {
return {
headers: {
'Content-Type': 'application/json;charset=UTF-8',
Authorization: `Bearer ${token}`
'Authorization': `Bearer ${token}`
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/store/modules/script_settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function getAuthHeader () {
return {
headers: {
'Content-Type': 'application/json;charset=UTF-8',
Authorization: `Bearer ${token}`
'Authorization': `Bearer ${token}`
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/store/modules/user_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ async function getAuthRequestHeader () {
const header = {
headers: {
'Content-Type': 'application/json;charset=UTF-8',
Authorization: `Bearer ${token}`
'Authorization': `Bearer ${token}`
}
}

Expand Down

0 comments on commit 93601f5

Please sign in to comment.