Published on2022年11月10日eslint error 'Promise' is not defined no-undef の対処方法eslintjavascripteslint error Promise is not defined no-undef の対処方法を紹介します。 eslintで下記のようにPromiseが定義されていませんとエラーが出る場合があります。 これの対象方法ですが、eslintのconfigである eslintrc.jsのenvにあるes6をtrueにすることで解消できます。そのため、下記のように記載することで解決できます。
Published on2021年7月7日ESLint CDNのライブラリでno-undefのerrorが出た時の対処方法eslint外部のライブラリをCDN経由で使っている場合に、 ESLintでerror 'Vue' is not defined no-undefのようなエラーに遭遇した際の対処方法を紹介します。とても簡単で、/*global ...*/のように明示的にエラーになっているモジュールを定義してあげれば良いのです。