問題タブ [adonis.js]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
node.js - プロジェクト全体で eslint の特定のエラーを無視する
私は AdonisJs (NodeJS フレームワーク) を使用しており、use
ファイルをインポートするために呼び出される関数を作成しましuse('App/Services/User')
たrequire('../app/Services/User')
。
問題は、eslint がエラーをスローすること'use' is not defined no-undef
です。
現時点では、次の 2 つの方法があります。
- 各ファイルにその行のアラートを無効にするeslintコメントを入れますが、面倒です
require
の代わりに使用しますがuse
、この関数は非常に便利です。
プロジェクト全体で特定no-undef
の機能を「一度だけ」無効にする方法はありますか?use