eslint-config-remix
This package provides a shareable eslint config specifically designed for Remix. It is basically a clone of eslint-config-react-app
without flow and test related config at the moment.
Setting it up
This package ships with @rushstack/eslint-patch
which allows resolving all plugins within the package. This simplify the installation as all you need now is the config package only.
npm install --save-dev eslint-config-remix
Then, enable it by adding remix
on the extends
config
{
"extends": ["remix"]
}