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

eslint-plugin-autofix bug: missing comma #86

Open
Niefee opened this issue Jun 1, 2023 · 1 comment
Open

eslint-plugin-autofix bug: missing comma #86

Niefee opened this issue Jun 1, 2023 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@Niefee
Copy link

Niefee commented Jun 1, 2023

i use the plugin with vue3

watch(
    () => props.visible,
    (newVal, oldVal) => {
        // code
    },
    { deep: true },
);

Repair results

watch(
    () => props.visible    // error: missing comma
    () => {
        // code
    },
    { deep: true },
);

The quotation mark disappears after the first parameter of the function call

@Niefee Niefee added the bug Something isn't working label Jun 1, 2023
@xiaohuoni
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants