問題タブ [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.

0 投票する
2 に答える
2058 参照

node.js - プロジェクト全体で eslint の特定のエラーを無視する

私は AdonisJs (NodeJS フレームワーク) を使用しており、useファイルをインポートするために呼び出される関数を作成しましuse('App/Services/User')require('../app/Services/User')

問題は、eslint がエラーをスローすること'use' is not defined no-undefです。

現時点では、次の 2 つの方法があります。

  1. 各ファイルにその行のアラートを無効にするeslintコメントを入れますが、面倒です
  2. requireの代わりに使用しますがuse、この関数は非常に便利です。

プロジェクト全体で特定no-undefの機能を「一度だけ」無効にする方法はありますか?use