@inthepocket/eslint-config-remix
v1.2.0
Published
This contains all ESLint rules to lint the [Remix boilerplate](https://git.inthepocket.org/team-spacebar/boilerplates/remix-boilerplate) created by Team Spacebar. It is recommended to use this config to ensure that any Next.js project within In The Pocket
Downloads
11
Maintainers
Keywords
Readme
@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}'"
}
}