3.0.0 • Published 1 month ago

@movable/eslint-config v3.0.0

Weekly downloads
421
License
MIT
Repository
github
Last release
1 month ago

@movable/eslint-config

Installation

The easiest way to set up this configuration is to leverage the Yeoman generator by running the following in the root of your project:

yarn create @movable/lint-config

This will ask you some questions about your project and set up the configuration for you based on the answers.


If you want to configure your project manually, you can do the following:

Add this package, as well as ESLint and Prettier, to your devDependencies by running:

yarn add -D @movable/eslint-config

Configuration

A few ESLint configurations are provided, based on the kind of environment you are working in.

This sets up some shared rules, as well as configuring ESLint to run Prettier (so that both projects do not have to be run independently). You can extend from the base configuration like so:

{
  "extends": "@movable/eslint-config"
}

Environment-specific packages can be included as well to better suit different use-cases. Note that each one is its own Node dependency and must be installed individually.

{
  "extends": ["@movable/eslint-config", "@movable/eslint-config-node"]
}

Linting Your Project

It is recommended that you add the following package.json to create an easy way to run ESLint from the command line:

{
  "scripts": {
+   "lint": "eslint ."
  }
}

This allows you to run the following:

yarn lint # Report errors in your project
yarn lint --fix # Fix anything that can be fixed automatically, and report everything else