eslint

    10熱度

    2回答

    當我運行ESLint我收到以下錯誤: 1:13 error 'joi' should be listed in the project's dependencies. Run 'npm i -S joi' to add it import/no-extraneous-dependencies 2:16 error 'lodash' should be listed in the project

    1熱度

    1回答

    error 'SyntheticUIEvent' is not defined no-undef 爲: handleDocumentKeyUp = (event: SyntheticUIEvent) => {} 我得到這個領域的開源項目之一,我的工作(eslintrc.js),但不是在自己的應用程序代碼,但我無法發現linting安裝中的差異或錯誤。 什麼配置缺失/錯誤,這將使eslint

    0熱度

    1回答

    我已使用eslint-loader與推薦的設置。 這是我的設置中的WebPack: ,這是我.eslintrc文件: 顯示瀏覽器控制檯良好的報告。但報表中的行號錯誤與項目文件不匹配。 請幫助

    1熱度

    1回答

    我剛剛將npm run standard添加到Travis CI。我收到這個錯誤。 > standard standard: Unexpected linter output: Error: standard: Configuration for rule "comma-dangle" is invalid: Value "[object Object]" must be

    3熱度

    1回答

    隨着最新版本的nodejs 7.6+我開始使用async/await。 我使用的是jshint,但是從我讀的內容他們目前支持這種語法,並且有人建議使用eslint。 因此,我確定了eslint,但是argh ..它也標記了異步函數。 Parsing error: Unexpected token init (Fatal) 我知道沒有錯,因爲我的代碼運行良好,它只是棉絨。如果我註釋掉一個異步函數,它

    0熱度

    1回答

    只是想有證監會和ESLint抱怨 我HAZ在我.eslinrc { "env": { "es6": true, "browser": true }, "extends": "airbnb", "rules": { "semi": [2, "never"], "no-unexpected-multiline": 2,

    0熱度

    1回答

    我有一個簡單的數組定義,我想這是在語法如下: this.selfClosingHtmlTags = [ 'area', 'base', 'br', 'col', 'command', 'embed', 'hr', 'img', 'input', 'keygen', 'link', 'meta', 'param', 'source', 'track', 'wbr' ]

    0熱度

    1回答

    使用webpack 2的應用程序,使用eslint。 我正在使用webpack的DefinePlugin在編譯時替換NODE_ENV變量。 我使用eslint進行代碼格式化。 這是我如何定義webpack.config.js要替換的變量, var plugins = [ new webpack.DefinePlugin({ NODE_ENV:JSON.stringify(N

    -2熱度

    1回答

    我想靜默所有樣式警告,並且只有在代碼中存在重大泄漏時纔會發出警告,如丟失的括號或不存在的引用var。是否有一條規則可以插入eslint.json來清除除致命錯誤之外的所有內容?

    4熱度

    1回答

    ESlint靜態智能感知在Visual Studio 2017中似乎不受支持,這使得.js文件中的編碼變得非常痛苦,因爲我必須運行CMD eslint命令來獲取任何linting錯誤。在VSCode中,我只能使用ESLint擴展。那麼Visual Studio 2017呢? 他們有什麼辦法可以啓用它嗎?