This package provides the following services:
fast-eslint-8 package
Lightweight eslint v8.x linter plugin for Atom, based on fast-eslint.
fast-eslint-8 is a migration of fast-eslint from using eslint 7.10 to eslint 8.x (see badge for current version).
Eslint v8.x is bundled with this package and works "out of the box".
It is NOT necessary to install eslint globally or inside your project.
Many thanks to Arnaud Dezandee, who is the creator of fast-eslint. This migration would not have been able without his project. Feel free to copy the changed code and reintegrate it into fast-eslint.
Table of Contents
- Installation
- Configuration
- Updating fast-eslint-8
- Using popular styleguides with eslint, like airbnb, google and others
- Most bugging error messages
Please follow the links in 'table of contents' to install, configure and update.
Most bugging error messages
No ESLint configuration found in <filename>
You simply forgot to provide an .eslintrc.* file in the named directory.
If you choose to provide an .eslintrc.js file, its content might look as follows:
/**
* .eslintrc.js - eslint configuration file
* @ignore
*/
module.exports = {
"extends": "eslint:recommended",
"env": {
"browser": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": "latest"
}
};
Follow the link, to: