-
Notifications
You must be signed in to change notification settings - Fork 38
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
1 parent
c7e50a9
commit 2992824
Showing
34 changed files
with
2,089 additions
and
3,154 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { nextJsConfig } from '@repo/eslint-config/next-js'; | ||
|
||
/** @type {import("eslint").Linter.Config} */ | ||
export default [ | ||
...nextJsConfig, | ||
{ | ||
rules: { | ||
'@typescript-eslint/no-namespace': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-unused-vars': 'off', | ||
}, | ||
}, | ||
]; |
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 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { nextJsConfig } from '@repo/eslint-config/next-js'; | ||
|
||
/** @type {import("eslint").Linter.Config} */ | ||
export default [ | ||
...nextJsConfig, | ||
{ | ||
rules: { | ||
'@typescript-eslint/no-namespace': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-unused-vars': 'off', | ||
}, | ||
}, | ||
]; |
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,7 @@ | ||
{ | ||
"compilerOptions": { | ||
"plugins": [{ "name": "next" }], | ||
"baseUrl": ".", | ||
"paths": { | ||
"@/*": ["./*"] | ||
} | ||
|
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,4 @@ | ||
import { config } from '@repo/eslint-config/base'; | ||
|
||
/** @type {import("eslint").Linter.Config} */ | ||
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 |
---|---|---|
|
@@ -41,12 +41,12 @@ | |
"@repo/commitlint-config": "workspace:*", | ||
"@repo/prettier-config": "workspace:*", | ||
"@umijs/openapi": "^1.13.0", | ||
"husky": "^9.1.6", | ||
"husky": "^9.1.7", | ||
"lint-staged": "^15.2.10", | ||
"semantic-release": "^21.1.2", | ||
"semantic-release": "^24.2.0", | ||
"semantic-release-config-gitmoji": "^1.5.3", | ||
"turbo": "^2.2.3", | ||
"typescript": "^5.6.3" | ||
"turbo": "^2.3.2", | ||
"typescript": "^5.7.2" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
|
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,32 @@ | ||
import js from '@eslint/js'; | ||
import eslintConfigPrettier from 'eslint-config-prettier'; | ||
import onlyWarn from 'eslint-plugin-only-warn'; | ||
import turboPlugin from 'eslint-plugin-turbo'; | ||
import tseslint from 'typescript-eslint'; | ||
|
||
/** | ||
* A shared ESLint configuration for the repository. | ||
* | ||
* @type {import("eslint").Linter.Config} | ||
* */ | ||
export const config = [ | ||
js.configs.recommended, | ||
eslintConfigPrettier, | ||
...tseslint.configs.recommended, | ||
{ | ||
plugins: { | ||
turbo: turboPlugin, | ||
}, | ||
rules: { | ||
'turbo/no-undeclared-env-vars': 'warn', | ||
}, | ||
}, | ||
{ | ||
plugins: { | ||
onlyWarn, | ||
}, | ||
}, | ||
{ | ||
ignores: ['dist/**'], | ||
}, | ||
]; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.