LoginSignup
0
0

More than 1 year has passed since last update.

ESlint 全角スペースを正規表現で使う

Posted at

修正前

エラー

Irregular whitespace not allowed  no-irregular-whitespace

修正後

参考(document)

eslintrc.js
module.exports = {
  ...,
  rules: {
    "no-irregular-whitespace": [
      "error",
      {
        skipRegExps: true
      }
    ],
  }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0