0.4.3 • Published 8 years ago

eslint-config-fyndiq v0.4.3

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

eslint-config-fyndiq

code style: prettier

An ESLint configuration for Fyndiq projects

This configuration inherits AirBnB's eslint configuration. To install it in one of your projects, do the following:

  1. Install eslint
    npm i -D eslint babel-eslint prettier eslint-config-fyndiq
  2. Install eslint-import-resolver-webpack: npm i -D eslint-import-resolver-webpack
  3. Create an .eslintrc.js config file using this template
    module.exports = {
      extends: 'fyndiq',
      rules: {
        // Your custom rules here
      },
      settings: {
        'import/resolver': {
          webpack: {
            config: 'path/to/your/webpack.config.js',
          },
        },
      },
    }