This repo contains all the configs that are shared across the Prax ecosystem.
- Install the repo using your package manager.
pnpm add prax-wallet/configs#main
This will keep the configs up to date by always pulling from main.
- Extend the relevant config
In your eslint.config.js
:
import eslintConfig from 'configs/eslint';
export default [
...eslintConfig,
// configuration overrides
];
In your prettier.config.js
:
import prettierConfig from 'configs/prettier';
export default {
...prettierConfig,
// configuration overrides
};