Collection of eslint rules to be used in Norvento projects
- Add the dependency to your project:
yarn add --dev @norvento/eslint-config
- Create an
eslint.config.mjs
file with the following contents:import { defineConfig } from "eslint/config"; import norventoConfig from "@norvento/eslint-config"; export default defineConfig([ { extends: [norventoConfig.default] }, ]);