This package provides the following services:
Fast-ESLint
Lightweight ESLint plugin for Atom.
- ESLint is already highly configurable through .eslintrcfiles.
- Same behavior as: $ cd /path/to/file && eslint src.js.
- It's fast !
⚠️ ESLint v3.0.0 now requires that you use a configuration to run. See migrating-to-3.0.0
Installation
- apm install fast-eslint
- choose a popular shared config (or build your own) and follow installation instructions
Popular style guides
- Airbnb: eslint-config-airbnb
- Standard: eslint-config-standard
- Google: eslint-config-google
- XO: eslint-config-xo
Example Settings for standard & standard-react
- npm install -g eslint-config-standard eslint-config-standard-react
Project / System configuration
Create .eslintrc.* file either in your project or home directory.
{
  "extends": ["standard", "standard-react"]
}
Atom wide configuration
Go to Atom -> Config... and enter:
"*":
  "fast-eslint":
    baseConfigExtends: [
      "standard",
      "standard-react"
    ]
MIT License
Copyright (c) 2016-2020 Arnaud Dezandee