Skip to content

Commit 7d6a52a

Browse files
committed
fix: remove eslint and prettier
1 parent 738852d commit 7d6a52a

File tree

8 files changed

+37
-1577
lines changed

8 files changed

+37
-1577
lines changed

.eslintignore

-6
This file was deleted.

.eslintrc.js

-82
This file was deleted.

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install NPM dependencies
2727
run: yarn install --immutable
2828

29-
- name: Check ESLint
29+
- name: Lint
3030
run: yarn lint
3131

3232
typecheck:

packages/client/.prettierignore

-9
This file was deleted.

packages/client/package.json

+1-12
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"build": "tsc -p ./tsconfig.build.json && tsc-alias",
3030
"dev": "tsc --watch & nodemon --watch dist --delay 1 --exec tsc-alias",
3131
"typecheck": "tsc --noEmit",
32-
"lint": "biome lint"
32+
"lint": "biome lint ."
3333
},
3434
"dependencies": {
3535
"@noble/ciphers": "^0.5.3",
@@ -59,23 +59,12 @@
5959
"@types/node": "^14.18.54",
6060
"@types/react": "^18.0.25",
6161
"@types/react-native": "^0.70.6",
62-
"@typescript-eslint/eslint-plugin": "^6.2.0",
63-
"@typescript-eslint/parser": "^6.2.0",
6462
"babel-jest": "^27.5.1",
65-
"eslint": "^8.45.0",
66-
"eslint-config-prettier": "^8.8.0",
67-
"eslint-plugin-prettier": "^5.0.0",
68-
"eslint-plugin-react": "^7.35.0",
69-
"eslint-plugin-react-hooks": "^4.6.2",
70-
"eslint-plugin-react-native": "^4.1.0",
71-
"eslint-plugin-simple-import-sort": "^10.0.0",
72-
"eslint-plugin-unused-imports": "^3.0.0",
7363
"expo-web-browser": "^13.0.3",
7464
"jest": "^27.5.1",
7565
"jest-chrome": "^0.7.2",
7666
"jest-websocket-mock": "^2.4.0",
7767
"nodemon": "^3.1.0",
78-
"prettier": "^3.0.0",
7968
"ts-jest": "^27.1.5",
8069
"ts-node": "^10.9.1",
8170
"tsc-alias": "^1.8.8",

packages/client/src/core/type/util.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable @typescript-eslint/no-explicit-any */
21
// Copyright (c) 2018-2023 Coinbase, Inc. <https://www.coinbase.com/>
32

43
import { standardErrors } from '../error';

packages/wagmi-connectors/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"build": "tsc",
2929
"dev": "tsc -w",
3030
"test": "jest",
31-
"lint": "biome lint"
31+
"lint": "biome lint ."
3232
},
3333
"peerDependencies": {
3434
"@mobile-wallet-protocol/client": "*",
@@ -46,7 +46,6 @@
4646
"@types/jest": "^29.5.12",
4747
"@wagmi/core": "^2.13.4",
4848
"jest": "^29.7.0",
49-
"prettier": "^3.3.3",
5049
"ts-jest": "^29.2.4",
5150
"ts-node": "^10.9.2",
5251
"typescript": "^5.1.6",

0 commit comments

Comments
 (0)