🤷

ESLintを導入する時にコピペしてたeslint.validateの正体について 

2023/06/23に公開

いきなり結論

eslint.validate - 検証を強制するファイルを指定する言語識別子の配列。これは古いレガシー設定であり、通常の場合はもう必要ありません。デフォルトは ["javascript", "javascriptreact"] です。
Eslint公式 検索 legacy で飛べます
https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint

特定のファイルにlintを効かせる設定だったのですが、現在はデフォルトでjs jsx ts tsx に効いているので必要なしです

コピペしてたサイト

https://www.digitalocean.com/community/tutorials/linting-and-formatting-with-eslint-in-vs-code

Discussion