1.1.1 • Published 5 months ago
@penumbra-zone/configs v1.1.1
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#mainThis 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
};