Flo Edelmann

Results 458 comments of Flo Edelmann

> So, it does not appear to me to be a useful mechanism to put whatever at the top of the list that the user just selected. Recently there was...

Please open a new issue following the bug template. * **EDIT:** Done: #2600

Additionally, these cases should be reported: ```ts import { set, del } from 'vue' set(obj, key, val) del(obj, key) ``` ```ts const { set, del } = require('vue') set(obj, key,...

> Transitions are also applied in the directive. Is this documented somewhere? If not, it may be a bug or accidental behavior that might change in the future, and then...

Okay, I guess it's fine then. A PR is welcome that: * adds a new option `additionalDirectives: string[]` to the rule * updates the docs * adds new test cases

ESLint and thus eslint-plugin-vue only has access to the current file while linting, so checking what might be returned from some other file is difficult. Maybe if typescript-eslint's parser is...

Instead of `"UNIQUE"`, you can specify the attributes directly, and you can use an array to allow them to be in any order internally, so e.g. replace `"UNIQUE"` with `["id",...

Unplugin Vue Router will not be officially supported in eslint-plugin-vue, so this feature request is out of scope. But you can already adjust the order manually. I think it should...

Indeed, I think that all props should be marked as used when the whole `props` object is passed to an (unknown) function. However, note that `toRef(props, 'foo')` should only mark...

What is the `@vue/typescript/recommended` config? It looks similar to https://github.com/vuejs/eslint-config-typescript, but that one is only supported for `@vue/cli` & `create-vue` setups and is imported with `@vue/eslint-config-typescript`.