open-duelyst/duelyst

[P1] Enable linting for ESLint override files

Open

#26 opened on Sep 10, 2022

View on GitHub
 (1 comment) (0 reactions) (0 assignees)JavaScript (3,443 stars) (526 forks)batch import
backendenhancementfrontendhelp wanted

Description

We have several files with overrides set in .eslintrc.json:

    {
      "files": ["app/**/*.js"],
      "rules": {"camelcase": ["warn"]}
    },
    {
      "files": ["test/**/*.js"],
      "rules": {"no-unused-expressions": ["off"]}
    }

We should remove these overrides and resolve the underlying linting issues.

Contributor guide