lowmess / eslint-config-lowmess

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is my ESLint config. It is meant to be used with Prettier and prettier-config-lowmess. As such, any conflicting stylistic rules have been disabled.

🌮

Usage in mixed JS & TS environments

Annoyingly, including an override for .ts files in the base config means any project that uses it needs to install TypeScript as a dependency. Boo.

{
  "extends": ["lowmess"],
  "overrides": [
    {
      "files": ["**/*.ts?(x)"],
      "extends": ["lowmess/typescript"]
    }
  ]
}

About


Languages

Language:JavaScript 99.3%Language:Shell 0.7%