eslint-config-qmmr
v4.1.1
Published
Shareable eslint config for my projects
Maintainers
Readme
eslint-config-qmmr
Shareable eslint config for my projects
eslint shareable configs I use for my personal projects.
npm install eslint-config-qmmrUsage
Extend your .eslintrc with one of the following configurations:
default
This is my default config for generic projects. It extends the eslint:recommended config. (source)
{
"extends": "qmmr"
}es6
For projects that use ECMAScript[6|2015]. It extends the default config. (source)
{
"extends": "qmmr/es6"
}react
For projects that use React.js and Babel.js.
It extends the es6 config. (source).
Requires npm install babel-eslint eslint-plugin-react --save-dev.
{
"extends": "qmmr/react"
}