Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2021-07-27 16:54:26 +00:00
parent 6b0d45a5c6
commit cc1adb825a
4247 changed files with 144820 additions and 149530 deletions

View file

@ -4,7 +4,7 @@
// `false` if the options DO conflict with Prettier, and `true` if they dont.
module.exports = {
curly(options) {
"curly"({ options }) {
if (options.length === 0) {
return true;
}
@ -13,7 +13,7 @@ module.exports = {
return firstOption !== "multi-line" && firstOption !== "multi-or-nest";
},
"lines-around-comment"(options) {
"lines-around-comment"({ options }) {
if (options.length === 0) {
return false;
}
@ -30,7 +30,7 @@ module.exports = {
);
},
"no-confusing-arrow"(options) {
"no-confusing-arrow"({ options }) {
if (options.length === 0) {
return false;
}
@ -39,7 +39,16 @@ module.exports = {
return firstOption ? firstOption.allowParens === false : false;
},
"vue/html-self-closing"(options) {
"no-tabs"({ options }) {
if (options.length === 0) {
return false;
}
const firstOption = options[0];
return Boolean(firstOption && firstOption.allowIndentationTabs);
},
"vue/html-self-closing"({ options }) {
if (options.length === 0) {
return false;
}