-
Notifications
You must be signed in to change notification settings - Fork 72
Support ESLint 8.x #286
Comments
- Updates all dev dependencies - Addresses breaking changes from dependencies - Lint fixes from dependency changes to recommended configs See SonarSource#286
- Updates all dev dependencies - Addresses breaking changes from dependencies - Lint fixes from dependency changes to recommended configs See SonarSource#286
@MichaelDeBoey I've started on this, but could use a little help. I'm having a hard time with two things: Failing Unit Test // foo.js
module.exports = {
c: [1, 2, 3],
};
// bar.js
let {c} = require('./foo');
c = [];
console.log(c[0]); // undefined - not 1 Babel Config
I tried setting Any thoughts / ideas? |
…ot supported anymore (SonarSource#286)
@MichaelDeBoey I've tried it myself as well and didn't run into any issues really, except some other outdated packages. In any case, a PR is open #291 :) Hope that this gets merged soon :) |
This creates an issue with my package-lock. I have to use Hope the PR gets merged as soon as possible! npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! Found: [email protected]
npm ERR! node_modules/eslint
npm ERR! dev eslint@"^8.2.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer eslint@"^5.0.0 || ^6.0.0 || ^7.0.0" from [email protected]
npm ERR! node_modules/eslint-plugin-sonarjs
npm ERR! dev eslint-plugin-sonarjs@"^0.10.0" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution. |
It is not compatible with eslint 8 yet: SonarSource/eslint-plugin-sonarjs#286
sonarjs is not yet compatible with eslint 8, see issue: SonarSource/eslint-plugin-sonarjs#286
ESLint v8.0.0 is released 🎉
It would be awesome to have official ESLint 8 support. 👊
I'm happy to help where I can of course 🙂
The text was updated successfully, but these errors were encountered: