1.0.2 • Published 5 years ago

eslint-config-yellow v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Yellow is an opinionated ESLint Configuration prioritizing readability, brevity, and clarity. It supports both JavaScript and Typescript.

Some Rules

TopicRule
Semicolons?Yes
Indentation?2 Spaces
Quotes?Single
Line length?79

Usage

Installation:

npm i -D eslint-config-yellow

Setup:

In your .eslintrc, include

{
    "extends": "eslint-config-yellow"
}

To access the additional TypeScript rules, use

{
    "extends": "eslint-config-yellow/ts"
}