Skip to content

Commit a4d3235

Browse files
committed
initial commit
0 parents  commit a4d3235

File tree

217 files changed

+12554
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+12554
-0
lines changed

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules/
2+
dist/
3+
4+
.npm-*.log
5+
.pnpm-*.log
6+
.yarn-*.log
7+
npm-*.log
8+
pnpm-*.log
9+
yarn-*.log
10+
11+
*.local
12+
13+
tsconfig.tsbuildinfo

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@jsr:registry=https://npm.jsr.io

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pnpm-lock.yaml

.prettierrc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"trailingComma": "all",
3+
"useTabs": true,
4+
"tabWidth": 2,
5+
"printWidth": 110,
6+
"semi": true,
7+
"singleQuote": true,
8+
"bracketSpacing": true,
9+
"overrides": [
10+
{
11+
"files": ["tsconfig.json", "jsconfig.json"],
12+
"options": {
13+
"parser": "jsonc"
14+
}
15+
}
16+
]
17+
}

.vscode/settings.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
3+
"typescript.tsdk": "node_modules/typescript/lib"
4+
}

lexicons/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://github.com/bluesky-social/atproto/tree/dc471da267955d0962a8affaf983df60d962d97c/lexicons

0 commit comments

Comments
 (0)