Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

arnaud-dezandee/fast-eslint

Repository files navigation

Fast-ESLint

APM CircleCI David APM

semantic-release ESLint Commitizen friendly

Lightweight ESLint plugin for Atom.

  • ESLint is already highly configurable through .eslintrc files.
  • 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

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