eslint

    0熱度

    3回答

    也許類似於How do I configure ESLint to allow fat arrow class methods 當類方法定義爲箭頭函數Eslint高亮錯誤「方法」沒有定義。 (無爲undef)。 簡單的例子 class abc { d =() => { // method body } } 這裏就不difined 'd' 我.eslintrc配置

    0熱度

    1回答

    我有這樣的功能: import React from 'react'; import FilterList from './Filter/FilterList'; export default function Sidebar() { return ( <div> <FilterList /> </div> ); } 而且包括這些軟件包: "d

    -1熱度

    1回答

    我得到了下面的reduce函數拋出的「prefer-arrow-method」eslint錯誤。我知道這是因爲該函數是匿名的,但我將如何重寫reduce方法來解決此錯誤? const nameBrand = names.brand().reduce(function (sum, name) { sum[name] = name; return sum; },

    0熱度

    1回答

    當我使用ESLint檢查我的代碼,我得到這個錯誤---「陣營」的定義,但從來沒有使用任何未使用的 - 瓦爾 import React from 'react'; const app=({})=>{ return <div>123</div>; }; export default app; 我怎麼能修改我的。 eslintrc.json文件來解決這個錯誤?

    1熱度

    1回答

    當我在Sublime text 3中保存任何js文件時,下面粘貼的錯誤不斷彈出。 我試過重新安裝eslint,eslint-plugin-import,eslint-config-airbnb,eslint-plugin-react,但沒有結果。 有什麼想法? error: Error: C:\Users\user_name\node_modules\eslint-config-airbnb\ru

    0熱度

    1回答

    所以我使用的別名在我的WebPack配置和我有no-extraneous-dependencies等 因此,我安裝eslint-plugin-import與eslint-import-resolver-alias一起和我的配置文件.eslintrc這樣那些eslint警告: { "parser": "babel-eslint", "extends": "airbnb",

    2熱度

    1回答

    我已經安裝了默認網站的node/npm/vue.js-cli。 我安裝了這兩個擴展: 當我保存,它會檢查ESlint規則和顯示我的錯誤: 的問題是,當我按CTRL-SHIFT-F爲了格式化代碼,它(1)從函數名稱和括號之間取出空格,但是當我保存該文件,ESLint(2)抱怨說該空間不存在。 我如何知道什麼工具/擴展程序正在格式化我的代碼? 當我保存時,我怎麼知道工具/擴展程序檢查規則? 如何設置這

    1熱度

    1回答

    我有一個在Docker上運行的React NodeJS項目。我可以通過發表文章here來使它工作。 問題是,我的主機中的我的node_modules是空的。將volumes更改爲/www/project/node_modules:app/node_modules將使模塊在泊塢亭容器中不可用。 我的解決方法是通過運行npm install --only=dev只安裝在主機上的依賴關係,但每次重新啓動

    -2熱度

    1回答

    Eslint不能在Sublime Text 3或終端中工作。 我按照本自述文件中的說明進行操作。 https://github.com/roadhump/SublimeLinter-eslint 我第一次在我的終端輸入 npm install -g eslint 安裝eslint全球當我在終端上鍵入eslint -v,我得到 v4.5.0 我安裝SublimeLinter-的contrib

    3熱度

    2回答

    在VSCode安裝ESLint,我收到了一些警告信息,如後: 「變量」被分配一個值,但從來沒有使用過 下劃線顏色是紅色的,但我該如何改變顏色?我曾嘗試: "workbench.colorCustomizations": { "editorWarning.foreground": "#00FF00", "editorError.foreground": "#00FF00",