1.2.0 • Published 2 years ago

@inthepocket/eslint-config-remix v1.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

@inthepocket/eslint-config-remix

This contains all ESLint rules to lint the Remix boilerplate created by Team Spacebar. It is recommended to use this config to ensure that any Next.js project within In The Pocket is linted in the same way.

Usage

Install

npm i -D @inthepocket/eslint-config-remix

Configure ESLint

Within your package.json add the following:

{
  "eslintConfig": {
    "extends": ["@inthepocket/eslint-config-remix"]
  }
}

Add Lint script

{
  "scripts": {
    "lint": "eslint '**/*.{js,jsx,ts,tsx}'"
  }
}