PMD JavaScript Rules (ver 7.13.0)- Best Practices

PMDバージョン: 7.13.0 Best Practices AvoidWithStatement 公式ドキュメント: AvoidWithStatement Since: PMD 5.0.1 Priority: High (1) Description: with ステートメントの使用は避けるべきです。 with はスコープの曖昧さを引き起こし、コードの可読性と予測可能性を低下させます。 Configuration: <rule ref="category/ecmascript/bestpractices.xml/AvoidWithStatement" /> Example: //</rule>…