babel / babel-eslint

:tokyo_tower: A wrapper for Babel's parser used for ESLint (renamed to @babel/eslint-parser)
https://github.com/babel/babel/tree/main/eslint/babel-eslint-parser
MIT License
2.96k stars 239 forks source link

works for me #843

Closed zoushenglin closed 4 years ago

zoushenglin commented 4 years ago

works for me

eslint config

    "rules": {
      "indent": [
        "error",
        2,
        {
          "ignoredNodes": [
            "TemplateLiteral"
          ]
        }
      ],
      "template-curly-spacing": [
        "off"
      ]
    },

Originally posted by @fangbinwei in https://github.com/babel/babel-eslint/issues/799#issuecomment-568195009

zoushenglin commented 4 years ago

I can do that