@pohodnik/eslint-config
v1.2.7
Published
Pohodnik JS code style
Downloads
7
Readme
@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"
]
}