Giter Club home page Giter Club logo

eslint-config's Introduction

eslint-config-b8ta

Sharable ESlint config files to "extends" in our projects. Do not extend the files from the "rules" folder directly.

Configure Webpack Resolver for eslint-plugin-import

In projects that use special webpack resolve rules (such as resolve.alias), you will need to provide webpack config to allow eslint-plugin-import to resolve modules that it lints correctly.

1. Install eslint-import-resolver-webpack

yarn add -D eslint-import-resolver-webpack

Not every project needs this, so it is the consumer project's responsibility to manage the dependency. Recent working version tested was [email protected].

2. Update Settings of the project .eslintrc with import/resolver

{
  ...
  "settings": {
    "import/resolver": {
      "webpack": {
        "config": "./config/webpack.config.js"
      }
    }
  },
  ...
}

ESLint will find the config file using the path relative to the location of your package.json. If you want more power (e.g. using different webpack config for different builds), consider using Javascript eslint config.

Do not use "babeled" webpack config file (or require modules that require to be transpiled). ESLint only loads standard Javascript that supports in the version of your runtime node.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.