1.1.1 • Published 5 months ago

@penumbra-zone/configs v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Prax Wallet Configs

This repo contains all the configs that are shared across the Prax ecosystem.

Consuming this repo

  1. 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.

  1. 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
};