We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
右辺がundefinedやnullである厳密等価演算子を等価演算子に自動で修正できる設定を追加します.
右辺がundefinedやnullである厳密等価演算子を禁止する設定が #1513 で提案され #1585 で実装されています.しかし,この規則はeslint --fixで自動で修正できるはずである程度に単純なものであり,なれば自動修正も実装すべきです.
eslint --fix
開発者が,右辺がundefinedやnullである厳密等価演算子があるかどうかを気にしなくて良くなる.
"no-restricted-syntax"では実装できないため,ESLintルールを自前で実装し維持する必要が発生する.
"no-restricted-syntax"
ESLintルールを新たに実装し,プラグインとして導入する. 参考:https://typescript-eslint.io/developers/custom-rules
The text was updated successfully, but these errors were encountered:
issue作成ありがとうございます!
とても良いと思います! プルリクエストも楽しみにしています。 もしトライして難しい点があれば、知見としてぜひ知りたいです…!
Sorry, something went wrong.
<template>
Successfully merging a pull request may close this issue.
内容
右辺がundefinedやnullである厳密等価演算子を等価演算子に自動で修正できる設定を追加します.
右辺がundefinedやnullである厳密等価演算子を禁止する設定が #1513 で提案され #1585 で実装されています.しかし,この規則は
eslint --fix
で自動で修正できるはずである程度に単純なものであり,なれば自動修正も実装すべきです.Pros 良くなる点
開発者が,右辺がundefinedやnullである厳密等価演算子があるかどうかを気にしなくて良くなる.
Cons 悪くなる点
"no-restricted-syntax"
では実装できないため,ESLintルールを自前で実装し維持する必要が発生する.実現方法
ESLintルールを新たに実装し,プラグインとして導入する.
参考:https://typescript-eslint.io/developers/custom-rules
VOICEVOXのバージョン
OSの種類/ディストリ/バージョン
その他
The text was updated successfully, but these errors were encountered: