Skip to content

eslint-plugin-autofix bug: missing comma #86

@Niefee

Description

@Niefee

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

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions