The pluggable linting utility for JavaScript and related frameworks.
I am getting this error from ESLint: error Parsing error: The keyword 'const' is reserved from this code: const express = …
javascript node.js ecmascript-6 eslintI'm attempting to use the ESLint linter with the Jest testing framework. Jest tests run with some globals like jest, …
javascript jestjs eslintI am using React and Redux to develop a webapp and when I started up my project I got this: …
javascript reactjs react-router eslintI have a method which's main purpose is to set a property on a DOM object function (el) { el.expando = {}; } …
javascript dom eslintI'm using React and ESLint with eslint-plugin-react. I want to disable the prop-types rule in one file. var React = require(…
reactjs eslintRecently, we've upgraded to ESLint 3.0.0 and started to receive the following message running the grunt eslint task: > $ grunt eslint …
javascript gruntjs eslint grunt-eslintI have this import in my file app.spec.ts: import app from './app'; Which causes this Typescript error 2:17 …
typescript eslintIn my class, eslint is complaining "Expected 'this' to be used by class method 'getUrlParams' Here is my class: class …
javascript reactjs ecmascript-6 eslintI've installed eslint-config-airbnb that is supposed to pre configure ESLINT for React: Our default export contains all of our ESLint …
javascript reactjs eslint eslint-config-airbnbI am trying to add lint-fix in my package.json. My basic lint is "lint": "eslint --ext .js,.vue src …
javascript npm eslint npm-scripts