bigbinary / wheel

Don't reinvent the wheel for every new Rails project. Use sane Defaults.

Home Page:https://wheel-production.neetodeployapp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow the usage of `.json` and `.mp3` extensions in import statements

josephmathew900 opened this issue · comments

We need to modify the eslint rule import/extensions to allow the usage of .json and .mp3 extensions.

With this configuration it is working fine.

  "import/extensions": [
      "error",
      "never",
      { ignorePackages: true, pattern: { json: "always", mp3: "always" } },
    ],