eslint-config-etiqa
v2.0.0
Published
Etiqa JavaScript ES6 Styles configuration
Downloads
3
Readme
Etiqa: ESLint Configuration
Etiqa JavaScript ES6 Styles configuration for ESLint.
Usage
$ npm install eslint-config-etiqa --save-dev
ESLint configuration
{
"extends": "etiqa"
}
Webpack 1.x with eslint-loader
eslint-loader will search configuration in
.eslintrc
file at the root of the projecteslintConfig
property inside package.json
Example: package.json
{
"eslintConfig": {
"extends": "etiqa"
}
}
Webpack 2.x with eslint-loader
In your webpack configuration
module.exports = {
// ...
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: "eslint-loader",
options: {
extends: "etiqa"
}
},
],
},
// ...
}