Update checked-in dependencies
This commit is contained in:
parent
6b0d45a5c6
commit
cc1adb825a
4247 changed files with 144820 additions and 149530 deletions
17
node_modules/eslint-config-prettier/bin/validators.js
generated
vendored
17
node_modules/eslint-config-prettier/bin/validators.js
generated
vendored
|
|
@ -4,7 +4,7 @@
|
|||
// `false` if the options DO conflict with Prettier, and `true` if they don’t.
|
||||
|
||||
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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue