Use your own ESLint configuration.
npm i -D @rescripts/rescript-use-eslint-config[["use-eslint-config", ".eslintrc"]]Searches for the config in your root directory.
Call use-eslint-config with .eslintrc.js, .eslintrc.json, or any other file name (must have .js or .json extension).
[["use-eslint-config", "name-your-eslint-config-whatever.js"]]Searches for the config from your root directory and
node_modules.
[["use-eslint-config", "package"]]Searches for the config within the
eslintConfigfield of yourpackage.json.
[
[
"use-eslint-config",
{
"extends": ["react-app"],
"plugins": ["some-plugin"],
"rules": {
"some-rule": 0
}
}
]
]