eslint

    1熱度

    1回答

    在我的.eslintrc文件中,prefer-const的值已設置爲2,並且我沒有覆蓋文件中的規則。 所有的規則似乎工作正常。即使prefer-const規則似乎工作正常。但是,就這個特定的代碼而言,它並不會給我帶來任何錯誤。我不重新分配值,我期望eslint拋出一個錯誤。我正在使用Atom作爲編輯器。 /** * Main render function */ re

    0熱度

    1回答

    我想用流的ESLint,但是當我在我的文件中測試它時,ESLint沒有檢測到我使用的是靜態類型。 var str: number = 'hello world'; 我可以安裝什麼或者如何讓我的棉絨忽略這個?冒號,具體地說。

    1熱度

    1回答

    我遇到了ESLint未檢測到導入的React組件帶有'no-unused-vars'規則的問題。我的部件均採用進口: import MediaQuery from 'react-responsive'; 和組件是用來在文件中進一步下跌: render() { return ( <MediaQuery maxDeviceWidth={750}> <div style

    0熱度

    2回答

    const supertest = require('supertest-as-promised'); const expect = require('chai').expect; const request = supertest(process.env.BASE_URI);` 我得到這個ESLint錯誤: 'expect' is assigned a value but never

    0熱度

    1回答

    我試圖獲得本地eslintrc(在我的項目根目錄)來擴展我的全球eslintrc(位於~/.eslintrc)。 這裏的本地eslintrc: { "extends": "~/.eslintrc" } 下面是運行eslint foo.js時,我得到的錯誤: Cannot read config file: /Users/cbickel1/dev/learning/webpack-d

    0熱度

    2回答

    基於文件擴展名可以對文件應用不同的規則嗎?例如,我有[test] .spec.js測試規範文件駐留在我的源代碼中,但我想添加僅適用於它們的規則。

    9熱度

    3回答

    我設置了eslint & eslint-plugin-react。 當我運行ESLint時,linter會爲每個React組件返回no-unused-vars錯誤。 我假設它不承認我使用JSX或React語法。有任何想法嗎? 實施例: app.js import React, { Component } from 'react'; import Header from './header.js'

    3熱度

    1回答

    尋找一些這些codeclimate ESLINT問題的一些清晰。他們缺少關於http://eslint.org/docs/rules/的文檔。 我很猶豫,只是「排除」或從.eslintrc中刪除他們,因爲我確信他們有價值,我只是無法找到解決方法或閱讀更多關於他們。 「無法解析模塊路徑'ember'」。 import Ember from 'ember'; 「 '我的應用程序內' 應在項目的依賴上市

    4熱度

    1回答

    我得到以下eslint錯誤: 42:21 error 'WebSocket' is not defined no-undef 無法從react-native導入WebSocket的,因爲它是一個全球性的,但是當我添加的WebSocket作爲全局我.eslintrc.yml它不改變錯誤的結果: globals: WebSocket: true 如何定義的WebSocket作爲ES林

    0熱度

    1回答

    eslint jsx-quotes規則在Visual Studio代碼中不起作用。配置: .eslintrc.json: { "plugins": ["jsx"], "parserOptions": { "ecmaVersion": 6, "sourceType": "module", "ecmaFeatures": { "js