mirror of
https://github.com/luxfi/wallet.git
synced 2026-07-27 03:37:41 +00:00
Copies apps/extension, apps/mobile and 10 pkgs (wallet, ui, config, utilities, sessions, gating, notifications, analytics, eslint-config, prices) into a standalone pnpm workspace. Resolves merge conflict markers in extension and mobile package.json files, strips build artifacts (.wxt, .output, Pods).
32 lines
561 B
JavaScript
32 lines
561 B
JavaScript
import minimal from '@uniswap/eslint-config/minimal'
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
'node_modules',
|
|
'dist',
|
|
'.turbo',
|
|
'build',
|
|
'jest.config.js',
|
|
'webpack.config.js',
|
|
'webpack.dev.config.js',
|
|
'webpack-plugins/**',
|
|
'manifest.json',
|
|
'.nx',
|
|
'.output/**',
|
|
'.wxt/**',
|
|
'wxt.config.ts',
|
|
'jest-setup.js',
|
|
],
|
|
},
|
|
...minimal,
|
|
{
|
|
languageOptions: {
|
|
parserOptions: {
|
|
projectService: true,
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
},
|
|
]
|