Ad
ESLint Doesn't Lint ALL Errors In Command-line
I'm using eslint in my project, .eslintrc
looks like:
// http://eslint.org/docs/rules
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"plugins": [
"react"
],
"rules": {
"strict": 0,
"quotes": [2, "single"],
"indent": [2, 4, {SwitchCase: 1}],
"semi": [2, "always"],
"no-underscore-dangle": 0,
"no-unused-vars": 1,
"no-unused-expressions": 0,
"react/jsx-no-undef": 2,
"react/jsx-boolean-value": 1,
"react/jsx-sort-props": 0,
"react/jsx-sort-prop-types": 0,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-did-mount-set-state": 0,
"react/no-did-update-set-state": 1,
"react/no-multi-comp": 0,
"react/no-unknown-property": 1,
"react/prop-types": 0,
"react/react-in-jsx-scope": 1,
"react/self-closing-comp": 1,
"react/wrap-multilines": 1,
"new-cap": 0,
"no-extra-boolean-cast": 0,
"yoda": 0,
"no-empty": 0,
"no-use-before-define": 0,
"camelcase": 0
},
"globals": {
"expect": true,
"should": true,
"FB": true,
"gapi": true,
"google": true,
"customGoogleUtils": true,
"encodeURIComonent": true,
"decodeURIComonent": true
}
}
I'm using Sublime Text 3 and with necessary plugins it lints code successfully:
However when I'm running eslint ./src
in command-line it doesn't show any errors!. Even if I point it to specific file with errors in folder eslint ./src/path/to/file/with/errors
.
I'm using the latest versions in node_modules
:
"babel-eslint": "^5.0.0"
"eslint": "^2.4.0"
"eslint-plugin-react": "^4.2.3"
UPDATE
The project folder structure is as follows (I'm linting only /src
fodler):
What is the problem?
Ad
Answer
I found a problem - lint errors were present in .jsx
files and eslint ./src
validated only .js
by default.
In order to fix I've changed the cli command as follows - eslint --ext .js --ext .jsx ./src
.
Ad
source: stackoverflow.com
Related Questions
- → How to update data attribute on Ajax complete
- → October CMS - Radio Button Ajax Click Twice in a Row Causes Content to disappear
- → Octobercms Component Unique id (Twig & Javascript)
- → Passing a JS var from AJAX response to Twig
- → Laravel {!! Form::open() !!} doesn't work within AngularJS
- → DropzoneJS & Laravel - Output form validation errors
- → Import statement and Babel
- → Uncaught TypeError: Cannot read property '__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED' of undefined
- → React-router: Passing props to children
- → ListView.DataSource looping data for React Native
- → Can't test submit handler in React component
- → React + Flux - How to avoid global variable
- → Webpack, React & Babel, not rendering DOM
Ad