Shinigami
Shinigami
Needs investigation if `template`/`slot` needs to report if children doesn't have a `key` attribute
@TokugawaTakeshi This plugin will focus on linting the `template` part, but this rule underlines parts in `script`. So I'm not sure if this rule will be supported. https://github.com/TokugawaTakeshi/vue-eslint-pug_support_test/blob/7a08beda5096f9ac97c8a4077387844a72a584ec/src/App.vue#L41
Isn't is possible to get something like ```ts store.cart.add.dispatch() // or store.cart.mutations.add.dispatch() // or store.cart.mutations.add() ``` This would be a whole new feature request, but would increase the DX by...
@glen-84 Need to test this out next week. Thanks for pointing to this, didn't know it.
> * trailingComma es5: Makes code easier to edit and produces better `git diff`. > * arrowParens always: Makes code easier to edit. Especially good for TypeScript. > * eol...
> Maybe Prettier should run its own 2020 poll on this and any other topics being considered. 
`jsxSingleQuotes` is its own attribute! And it should stick to default `false`!!! ```jsx const greeting = 'Hello, world!'; const element = ( {greeting} ); ```
> @Shinigami92 I don’t think that referring to the reactions for this issue is the right way to decide if the change should be done in v2.0. > > *...
If we are targeting v3.0 I would prefer something like ```json { "quoteStyle": { "single": ["js", "ts", ...], "double": ["html", "pug", "jsx", "tsx", ...] } } ```
> @Shinigami92 imagine I’m a new developer, today is my first lesson on JSX. I feel pretty overwhelmed because even JavaScript alone feels too much for me. I also heard...