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

Upgrade vue-eslint-parser to v7.5.0 #1440

Merged
merged 1 commit into from Feb 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -56,7 +56,7 @@
"eslint-utils": "^2.1.0",
"natural-compare": "^1.4.0",
"semver": "^7.3.2",
"vue-eslint-parser": "^7.4.1"
"vue-eslint-parser": "^7.5.0"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
Expand Down
35 changes: 35 additions & 0 deletions tests/lib/rules/no-restricted-syntax.js
Expand Up @@ -36,6 +36,20 @@ tester.run('no-restricted-syntax', rule, {
message: 'Call expressions are not allowed.'
}
]
},

{
// https://github.com/vuejs/eslint-plugin-vue/issues/870
code: `
<template>
<input :value="interpolate(foo, bar, true)">
</template>`,
options: [
{
selector: 'CallExpression > :nth-child(3)[value!=true]',
message: 'Third argument of interpolate must be true'
}
]
}
],
invalid: [
Expand Down Expand Up @@ -148,6 +162,27 @@ tester.run('no-restricted-syntax', rule, {
'Call expressions are not allowed.',
'Call expressions are not allowed.'
]
},

{
// https://github.com/vuejs/eslint-plugin-vue/issues/870
code: `
<template>
<input :value="interpolate(foo, bar, false)">
</template>`,
options: [
{
selector: 'CallExpression > :nth-child(3)[value!=true]',
message: 'Third argument of interpolate must be true'
}
],
errors: [
{
message: 'Third argument of interpolate must be true',
line: 3,
column: 48
}
]
}
]
})