在Closure Linter中启用JSX

时间:2015-04-18 20:28:50

标签: javascript react-jsx google-closure eslint google-closure-linter

有没有选择在Closure Linter中使用JSX语法?或者是否可以在谷歌关闭时使用eslint?

我正在尝试弄清楚如何为我使用Google闭包库和Facebook React的新项目设置linter,但是我无法使用jsx语法处理闭包linter,我不知道如何配置.eslintrc使用goog.require之类的封闭内容而不获取warning "goog" is not defined

1 个答案:

答案 0 :(得分:0)

我不相信封闭催眠师理解JSX。至于配置eslint,让它知道' goog'是全局的而不是显示警告,请将其放在.eslintrc文件中:

YAML

globals:
  $: true
  goog: true

JSON

{
    "globals": {
        "$": true,
        "goog": true
    }
}

这是eslint documentation