Some opinionated style & type rules built on top of eslint-config-standard-typescript-prettier
See ./.eslintrc.js
Install it.
pnpm add -D @greenroom-robotics/eslint-config
Wire it up.
echo "module.exports = require('@greenroom-robotics/eslint-config')" > .eslintrc.js
# OR with react rules...
echo "module.exports = require('@greenroom-robotics/eslint-config/.eslintrc.react')" > .eslintrc.js
Configure .prettierrc.js
with something like:
module.exports = {
...require('@greenroom-robotics/eslint-config/.prettierrc'),
semi: false,
}
Done.
Thanks to require('@rushstack/eslint-patch/modern-module-resolution');
, plugins can be included relative to the configs, not the consuming project, so you don't need to install any eslint plugins/config peer dependencies.