1

是否有任何選項對Closure Linter使用JSX語法?或者有可能在Google關閉時使用eslint?在Closure Linter中啓用JSX

我想弄清楚如何爲我的新項目設置linter,我使用谷歌封閉庫和Facebook的反應,但我不能得到工作與jsx語法關閉linter,我不知道如何配置。 eslintrc與goog.require這樣的關閉工作一起工作,但沒有得到warning "goog" is not defined

回答

0

我不相信關閉linter理解JSX。至於配置eslint,讓它知道 'goog' 是全球性的,並沒有顯示出警告,把這個在您的.eslintrc文件:

YAML

globals: 
    $: true 
    goog: true 

JSON

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

這裏是eslint documentation