@penumbra-zone/configs
v1.1.0
Published
Shared Penumbra configurations
Downloads
127
Keywords
Readme
Prax Wallet Configs
This repo contains all the configs that are shared across the Prax ecosystem.
Consuming this repo
- 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 '@penumbra-zone/configs/eslint';
export default [
...eslintConfig,
// configuration overrides
];
In your prettier.config.js
:
import prettierConfig from '@penumbra-zone/configs/prettier';
export default {
...prettierConfig,
// configuration overrides
};