3.2.0 • Published 5 years ago

@zelz/eslint-config v3.2.0

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

@zelz/eslint-config

Zelzen Eslint Config

Common eslint config with optional support for React, JSX Accessibility, Typescript, and Prettier

Install

yarn add -D @zelz/eslint-config

Usage

eslint config

{
  "extends": [
    "@zelz/eslint-config", // Base file this should be included at the top.
    "@zelz/eslint-config/typescript", // Add if you're using typescript.
    "@zelz/eslint-config/react", // Add if you're using react.
    "@zelz/eslint-config/prettier", // Add if you want prettier to format your code (recommended)
  ],
  "rules": {
    // Add custom rules and overrides here
  }
}