-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: chore: use eslint flat config
- Loading branch information
1 parent
3e8f33b
commit ee78c15
Showing
48 changed files
with
1,018 additions
and
1,379 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,18 @@ | ||
--- | ||
"@alanlu-dev/markdownlint-config": patch | ||
"@alanlu-dev/eslint-config-flat": patch | ||
"@alanlu-dev/lint-staged-config": patch | ||
"@alanlu-dev/commitlint-config": patch | ||
"@alanlu-dev/stylelint-config": patch | ||
"@alanlu-dev/prettier-config": patch | ||
"@alanlu-dev/notion-api-zod-schema": patch | ||
"@alanlu-dev/mastercss-helpers": patch | ||
"@alanlu-dev/tsconfig": patch | ||
"@alanlu-dev/mastercss-config": patch | ||
"@alanlu-dev/changeset": patch | ||
"@alanlu-dev/nuxt-base": patch | ||
"@alanlu-dev/types": patch | ||
"@alanlu-dev/utils": patch | ||
--- | ||
|
||
chore: use eslint flat config |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ Stylelint | |
stylelintrc | ||
taze | ||
toastify | ||
tseslint | ||
tsup | ||
Turborepo | ||
unplugin | ||
|
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 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,6 +1,11 @@ | ||
import config from '@alanlu-dev/mastercss-config' | ||
|
||
console.log('master-base') | ||
|
||
/** @type {import('@master/css').Config} */ | ||
export default { | ||
extends: [config], | ||
variables: { | ||
'nuxt-base': '#00F', | ||
}, | ||
} |
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 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import config from '@alanlu-dev/eslint-config-flat' | ||
|
||
export default config |
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,6 +1,6 @@ | ||
{ | ||
"name": "@alanlu-dev/web-kit", | ||
"type": "commonjs", | ||
"type": "module", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"description": "A monorepo build system and workflow for web projects.", | ||
|
@@ -34,6 +34,7 @@ | |
"check": "turbo run test lint typecheck --parallel && pnpm lint:cspell", | ||
"test": "turbo run test", | ||
"lint": "turbo run lint", | ||
"lint:eslint": "turbo run lint:eslint", | ||
"typecheck": "turbo run typecheck", | ||
"lint:cspell": "pnpm cspell . --unique --no-progress --no-must-find-files", | ||
"lint:cspell:only-changed": "git diff --name-only | npx cspell --file-list stdin", | ||
|
@@ -51,7 +52,7 @@ | |
"devDependencies": { | ||
"@alanlu-dev/changeset": "workspace:*", | ||
"@alanlu-dev/commitlint-config": "workspace:*", | ||
"@alanlu-dev/eslint-config-base": "workspace:*", | ||
"@alanlu-dev/eslint-config-flat": "workspace:*", | ||
"@alanlu-dev/lint-staged-config": "workspace:*", | ||
"@alanlu-dev/markdownlint-config": "workspace:*", | ||
"@alanlu-dev/mastercss-config": "workspace:*", | ||
|
@@ -62,17 +63,18 @@ | |
"@changesets/changelog-github": "^0.5.0", | ||
"@changesets/cli": "^2.27.1", | ||
"@types/node": "^20.12.7", | ||
"@vitest/coverage-v8": "^1.5.1", | ||
"@vitest/coverage-v8": "^1.5.2", | ||
"cspell": "^8.7.0", | ||
"dotenv": "^16.4.5", | ||
"happy-dom": "^14.7.1", | ||
"husky": "^9.0.11", | ||
"playwright-core": "^1.43.1", | ||
"tsup": "^8.0.2", | ||
"tsx": "^4.7.2", | ||
"turbo": "^1.13.2", | ||
"tsx": "^4.7.3", | ||
"turbo": "^1.13.3", | ||
"typescript": "^5.4.5", | ||
"unbuild": "3.0.0-rc.1", | ||
"vite": "^5.2.10", | ||
"vitest": "^1.5.1" | ||
"vitest": "^1.5.2" | ||
} | ||
} |
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 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.