1.2.7 • Published 2 years ago

@pohodnik/eslint-config v1.2.7

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

@pohodnik/eslint-config

eslint configuration for pohodnik developers

install

 yarn add -D @pohodnik/eslint-config

or

 npm install --save-dev @pohodnik/eslint-config

usage

in root of your project place file .eslintrc with content:

basic

{
    "extends": "@pohodnik"
}

for react

{
    "extends": ["@pohodnik", "@pohodnik/eslint-config/react"]
}

for jest

{
    "extends": ["@pohodnik", "@pohodnik/eslint-config/jest"]
}

for all

{
    "extends": [
        "@pohodnik",
        "@pohodnik/eslint-config/react",
        "@pohodnik/eslint-config/jest"
    ]
}