0.0.0 • Published 2 years ago

@justinm/eslint-config v0.0.0

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

eslint-config-justinm

An eslint config curated by Justin McCormick, a Systems Architect based near Indianapolis, Indiana.

Contributors Forks Stargazers Issues MIT License

Table of Contents

Installing

npm install --save-dev eslint-config-justinm

# or using Yarn

yarn add -D eslint-config-justinm

Configuring Eslint

module.exports = {
  extends: [
    // @justinm provides a very minimal config
    "@justinm",
    // or choose the recommended config
    "@justinm/eslint-config/recommended",
    
    // Next, choose one of the following based on your project's language
    "@justinm/eslint-config/node",
    "@justinm/eslint-config/typescript",

    // Add additional styling support
    "@justinm/eslint-config/prettier",
    "@justinm/eslint-config/sorted",
  ]
}