0.4.2 • Published 3 years ago

@pinnsg/eslint-config v0.4.2

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

Personal configs

Credit: Forked from ntnyq

EsLint config

Usage

Install

$ npm i @pinnsg/eslint-config -D
# OR
$ yarn add @pinnsg/eslint-config -D

Extend this config

in .eslintrc.js

module.exports = {
    root: true,

    extends: ['@pinnsg'],

    rules: {
        // Override rules
    },
}

in package.json

{
    "eslintConfig": {
        "root": true,
        "extends": "@pinnsg"
    }
}