0.1.0 • Published 4 years ago

@aoeu/eslint-config-aoeu v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

eslint-config-aoeu

This package provides an extensible shared configuration for ESLint that supports The Art of Education University's JavaScript coding standards.

Installation

yarn add -D eslint-config-aoeu

Or, with npm:

npm install -D eslint-config-aoeu

Usage

Create an ESLint configuration file in your project. For our example below, we will use the .eslintrc.js format.

// .eslintrc.js
module.exports = {
  extends: [
    "aoeu",
    "aoeu/react",
    "aoeu/testing"
  ]
}