2.0.0 • Published 8 years ago
eslint-config-etiqa v2.0.0
Etiqa: ESLint Configuration
Etiqa JavaScript ES6 Styles configuration for ESLint.
Usage
$ npm install eslint-config-etiqa --save-devESLint configuration
{
"extends": "etiqa"
}Webpack 1.x with eslint-loader
eslint-loader will search configuration in
.eslintrcfile at the root of the projecteslintConfigproperty 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"
}
},
],
},
// ...
}