Flo Edelmann

Results 458 comments of Flo Edelmann

That's formatter (e.g. [Prettier](https://prettier.io/)) territory rather than linter territory. But we currently do have many formatting rules, so this could be considered. @ota-meshi what do you think?

> We are using a conditional `appear` attribute so that the animation is not shown on the first load of the app, only when navigating between components. Why not set...

Hmm, I'm not sure whether this kind of usage should be encouraged by not reporting an error. @ota-meshi what do you think?

Okay, then this is open for contributions. If anyone is interested, a PR is welcome! Please add these test cases: ```vue ```

Related to * https://github.com/vuejs/eslint-plugin-vue/issues/2051 * https://github.com/vuejs/eslint-plugin-vue/issues/2376

I'm not sure if I agree; every optional property (with a `?`) automatically has `| undefined` added to its type, so it would render the rule useless if every optional...

PR welcome, but note that the autofix would need to handle quite complex cases like transforming `{ foo: String as PropType, bar: User, baz: Number }` to `{ foo: 'a'...