Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 649 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 649 Bytes

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 'configs/eslint';

export default [
  ...eslintConfig,
  // configuration overrides
];

In your prettier.config.js:

import prettierConfig from 'configs/prettier';

export default {
  ...prettierConfig,
  // configuration overrides
};