-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: prettier and vitest config simplification (#1117)
- Loading branch information
1 parent
5d132bb
commit eace6bf
Showing
12 changed files
with
123 additions
and
123 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 3 additions & 2 deletions
5
tooling/eslint-plugin/src/index.ts → tooling/eslint-plugin/index.js
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,24 +1,15 @@ | ||
{ | ||
"name": "@uploadthing/eslint-plugin", | ||
"version": "0.1.0", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"require": "./dist/index.js" | ||
} | ||
".": "./index.js" | ||
}, | ||
"scripts": { | ||
"build": "tsup", | ||
"dev": "tsup --watch", | ||
"clean": "git clean -xdf dist node_modules" | ||
"clean": "git clean -xdf node_modules" | ||
}, | ||
"dependencies": { | ||
"@typescript-eslint/parser": "^7.13.1", | ||
"@typescript-eslint/utils": "^7.13.1" | ||
}, | ||
"devDependencies": { | ||
"@types/eslint": "^8.56.4", | ||
"@uploadthing/tsconfig": "workspace:*", | ||
"tsup": "8.0.2", | ||
"typescript": "^5.5.2" | ||
} | ||
} |
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
18 changes: 11 additions & 7 deletions
18
...-plugin/src/rules/no-throwing-promises.ts → ...lint-plugin/rules/no-throwing-promises.js
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.
File renamed without changes.
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,16 @@ | ||
{ | ||
"name": "@uploadthing/prettier-config", | ||
"version": "0.1.0", | ||
"type": "module", | ||
"exports": { | ||
".": "./index.js" | ||
}, | ||
"scripts": { | ||
"clean": "git clean -xdf .turbo node_modules" | ||
}, | ||
"dependencies": { | ||
"@ianvs/prettier-plugin-sort-imports": "^4.4.0", | ||
"prettier": "^3.4.2", | ||
"prettier-plugin-tailwindcss": "^0.6.9" | ||
} | ||
} |
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