-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
105 additions
and
7,575 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/lintstagedrc.schema.json", | ||
"*.{js,ts,tsx,jsx}": ["pnpm prettier"], | ||
"*.{json,md,html,js,jsx,ts,tsx}": ["pnpm prettier"] | ||
} | ||
"*.{js,ts,tsx,jsx}": [ | ||
"bunx biome check --apply-unsafe apps packages services" | ||
], | ||
"*.{json,md,html,js,jsx,ts,tsx}": [ | ||
"bunx biome check --apply-unsafe apps packages services" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged --config .config/.lintstagedrc.json | ||
bunx lint-staged --config .config/.lintstagedrc.json |
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,25 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json", | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"formatter": { | ||
"ignore": [ | ||
"dist", | ||
"node_modules", | ||
"types", | ||
".next" | ||
], | ||
"enabled": true, | ||
"lineEnding": "lf", | ||
"indentWidth": 200, | ||
"indentStyle": "tab", | ||
"lineWidth": 120 | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -5,32 +5,26 @@ | |
"description": "Overarching repository for the Guilded.JS repository", | ||
"author": "Zaid \"Nico\" <[email protected]>", | ||
"scripts": { | ||
"build": "pnpm --filter=!docs recursive run build", | ||
"build:typecheck": "pnpm --filter=!docs recursive run build:typecheck", | ||
"lint": "pnpm recursive --no-bail run lint", | ||
"lint:fix": "pnpm run lint --fix", | ||
"prettier": "prettier --ignore-path .config/.prettierignore --config .config/.prettierrc.json --write **/*.{ts,js,json,yml,yaml,md}", | ||
"prettier:check": "prettier --ignore-path .config/.prettierignore --config .config/.prettierrc.json --check **/*.{ts,js,json,yml,yaml,md}", | ||
"build": "turbo run build", | ||
"build:typecheck": "turbo run build:typecheck", | ||
"check": "biome check apps packages services", | ||
"check:fix": "biome check --apply-unsafe apps packages services", | ||
"changeset": "changeset", | ||
"changeset:version": "changeset version", | ||
"docs": "typedoc && cd docs && find . -type f -name \"*.html\" -exec sed -i'' -e 's/__namedParameters/options/g' {} +", | ||
"prepublishOnly": "pnpm run lint && pnpm recursive run prepublishOnly", | ||
"prepublishOnly": "turbo run prepublishOnly", | ||
"prepare": "husky install" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.26.1", | ||
"@types/node": "18.16.12", | ||
"dotenv": "16.0.3", | ||
"eslint": "8.40.0", | ||
"eslint-config-neon": "0.1.47", | ||
"gen-esm-wrapper": "1.1.3", | ||
"husky": "7.0.4", | ||
"lint-staged": "13.2.2", | ||
"nodemon": "^2.0.22", | ||
"pnpm": "8.5.1", | ||
"prettier": "2.8.8", | ||
"rimraf": "5.0.1", | ||
"ts-node": "10.9.1", | ||
"turbo": "^1.11.2", | ||
"typedoc": "0.24.7", | ||
"typescript": "5.0.4" | ||
}, | ||
|
@@ -56,8 +50,9 @@ | |
"url": "https://github.com/DaStormer" | ||
} | ||
], | ||
"engines": { | ||
"npm": "only-allow pnpm", | ||
"node": ">= 16.0.0" | ||
} | ||
} | ||
"workspaces": [ | ||
"packages/*", | ||
"services/*", | ||
"apps/*" | ||
] | ||
} |
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.