Code Monkey home page Code Monkey logo

Comments (2)

waldronmatt avatar waldronmatt commented on August 31, 2024

I spent a few hours trying to figure out a workaround to this.

For anyone looking to have this plugin work with a mixed project (.ts and .js), what worked for me was specifying both 'js' and 'ts' extensions in the plugin:

webpack-dev-config:

    new ESLintPlugin({
      extensions: ['js', 'ts'],
    }),

and in my .eslintrc.js file:

  1. setting up babel-eslint as normal for my .js files
  2. setting up @typescript-eslint/parser for .ts files via overrides:
module.exports = {
  parser: "babel-eslint",
  plugins: ["prettier"],
  extends: ["airbnb-base", "prettier"],
  env: {
    node: true,
    browser: true,
  },
  rules: {
    "prettier/prettier": ["error"],
  },
  overrides: [
    {
      files: ["**/*.ts"],
      parser: "@typescript-eslint/parser",
      plugins: ["@typescript-eslint", "prettier"],
      parserOptions: {
        project: "./tsconfig.eslint.json",
      },
      extends: [
        "airbnb-typescript/base",
        "plugin:@typescript-eslint/recommended",
        "prettier",
        "prettier/@typescript-eslint",
      ],
      env: {
        node: true,
        browser: true,
      },
      rules: {
        "prettier/prettier": ["error"],
      },
    },
  ],
};

Now when I run webpack, I'm getting the expected ts-specific typing errors for my .ts files, and typical errors for my .js files:

Screenshot_20201017_180244

from eslint-webpack-plugin.

ricardogobbosouza avatar ricardogobbosouza commented on August 31, 2024

Hi @wjmao88, @waldronmatt
Unfortunately we need to define the extensions because we use the NodeAPI of eslint.

Not to mention that we need the extensions to handle which files will be linted.
https://github.com/webpack-contrib/eslint-webpack-plugin/blob/master/src/index.js#L65

from eslint-webpack-plugin.

Related Issues (20)

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.