-
Notifications
You must be signed in to change notification settings - Fork 627
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add linting rule to sort imports (#3220)
* Add linting rule to sort imports * remove spacing between import groups * changeset * changeset * prettier config fine tuning * forbid use of deprecated imports * tidy
- Loading branch information
1 parent
53a577f
commit 61dc0d6
Showing
818 changed files
with
3,563 additions
and
2,717 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
"@atproto-labs/rollup-plugin-bundle-manifest": patch | ||
"@atproto/oauth-client-browser-example": patch | ||
"@atproto-labs/handle-resolver-node": patch | ||
"@atproto-labs/simple-store-memory": patch | ||
"@atproto-labs/identity-resolver": patch | ||
"@atproto/oauth-client-browser": patch | ||
"@atproto-labs/handle-resolver": patch | ||
"@atproto/oauth-client-node": patch | ||
"@atproto-labs/did-resolver": patch | ||
"@atproto-labs/simple-store": patch | ||
"@atproto/oauth-provider": patch | ||
"@atproto-labs/fetch-node": patch | ||
"@atproto/jwk-webcrypto": patch | ||
"@atproto/oauth-client": patch | ||
"@atproto/oauth-types": patch | ||
"@atproto-labs/fetch": patch | ||
"@atproto/jwk-jose": patch | ||
"@atproto/xrpc-server": patch | ||
"@atproto/common-web": patch | ||
"@atproto/jwk": patch | ||
"@atproto/identity": patch | ||
"@atproto/dev-env": patch | ||
"@atproto/lex-cli": patch | ||
"@atproto/lexicon": patch | ||
"@atproto/common": patch | ||
"@atproto/crypto": patch | ||
"@atproto/syntax": patch | ||
"@atproto/bsync": patch | ||
"@atproto/ozone": patch | ||
"@atproto/bsky": patch | ||
"@atproto/repo": patch | ||
"@atproto/sync": patch | ||
"@atproto/xrpc": patch | ||
"@atproto/api": patch | ||
"@atproto/aws": patch | ||
"@atproto/did": patch | ||
"@atproto/pds": patch | ||
--- | ||
|
||
Apply new linting rules regarding import order |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
"@atproto-labs/rollup-plugin-bundle-manifest": patch | ||
"@atproto-labs/handle-resolver-node": patch | ||
"@atproto/oauth-client-node": patch | ||
"@atproto/oauth-provider": patch | ||
"@atproto-labs/fetch-node": patch | ||
"@atproto/xrpc-server": patch | ||
"@atproto/identity": patch | ||
"@atproto/dev-env": patch | ||
"@atproto/lex-cli": patch | ||
"@atproto/common": patch | ||
"@atproto/crypto": patch | ||
"@atproto/bsync": patch | ||
"@atproto/ozone": patch | ||
"@atproto/bsky": patch | ||
"@atproto/repo": patch | ||
"@atproto/sync": patch | ||
"@atproto/aws": patch | ||
"@atproto/pds": patch | ||
--- | ||
|
||
Update NodeJS engine requirement to >=18.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@atproto/oauth-types": patch | ||
--- | ||
|
||
Support environments not providing URL.canParse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
node_modules | ||
interop-test-files | ||
__snapshots__ | ||
dist | ||
build | ||
.nyc_output | ||
coverage | ||
pnpm-lock.yaml | ||
.pnpm* | ||
.changeset | ||
*.d.ts | ||
packages/bsky/src/data-plane/gen | ||
CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"files.associations": { | ||
"**/tsconfig/*.json": "jsonc" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"license": "MIT", | ||
"private": true, | ||
"engines": { | ||
"node": "18" | ||
"node": ">=18.7.0" | ||
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
|
@@ -43,6 +43,9 @@ | |
"dotenv": "^16.0.3", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-import-resolver-typescript": "^3.7.0", | ||
"eslint-plugin-import": "^2.31.0", | ||
"eslint-plugin-n": "^17.15.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"jest": "^28.1.2", | ||
"node-gyp": "^9.3.1", | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.