ESLint: Flat Config Rollout Plan
eslint.org
ESLint: Flat Config Rollout Plan
1–9 of 9 posts
Re: ESLint: Flat Config Rollout Plan
#2Re: ESLint: Flat Config Rollout Plan
#3As a newcomer to Javascript and its tooling, I would like to know how people use ESLint. So please share your config.
Re: ESLint: Flat Config Rollout Plan
#4As a newcomer to Javascript and its tooling, I would like to know how people use ESLint. So please share your config.
Personally, I stick to opinionated rulesets such as Standard[1], AirBnb[2] and Unicorn[3] since you won’t spend hours tweaking and selecting new rules.
Re: ESLint: Flat Config Rollout Plan
#5As a newcomer to Javascript and its tooling, I would like to know how people use ESLint. So please share your config.
Having too many options leads to a lot of bikeshedding as the whole ecosystem ends up fragmenting and disagreeing with each other. It’s one of things I really dislike about JS compared to something like Go. Personally, I stick to opinionated rulesets such as Standard[1], AirBnb[2] and Unicorn[3] since you won’t spend hours tweaking and selecting new rules. [1] https://standardjs.com/ [2] https://github.com/airbnb/jav…
Re: ESLint: Flat Config Rollout Plan
#6Earlier quoted context omitted.
Having too many options leads to a lot of bikeshedding as the whole ecosystem ends up fragmenting and disagreeing with each other. It’s one of things I really dislike about JS compared to something like Go. Personally, I stick to opinionated rulesets such as Standard[1], AirBnb[2] and Unicorn[3] since you won’t spend hours tweaking and selecting new rules. [1] https://standardjs.com/ [2] https://github.com/airbnb/jav…
I use prettier for this reason. There’s very few config options on purpose. If I use eslint it’s for additional issue detection, not formatting.
Re: ESLint: Flat Config Rollout Plan
#7As a newcomer to Javascript and its tooling, I would like to know how people use ESLint. So please share your config.
Re: ESLint: Flat Config Rollout Plan
#8As a newcomer to Javascript and its tooling, I would like to know how people use ESLint. So please share your config.
[1] https://github.com/xojs/xo [2] https://github.com/antfu/eslint-config for Vue, Typescript, etc
Re: ESLint: Flat Config Rollout Plan
#9As a newcomer to Javascript and its tooling, I would like to know how people use ESLint. So please share your config.
I recommend those as they seem to be the least intrusive while giving a lot of sane defaults.