-
-
Notifications
You must be signed in to change notification settings - Fork 203
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
48 changed files
with
815 additions
and
1,869 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import next from 'eslint-config-custom/next.js'; | ||
|
||
export default [ | ||
{ | ||
ignores: [ | ||
'dist', | ||
'node_modules', | ||
'.next/', | ||
'out/', | ||
'next.config.mjs', | ||
'postcss.config.js', | ||
], | ||
}, | ||
...next, | ||
{ | ||
rules: { | ||
'no-console': 'off', | ||
// for Fumadocs CLI | ||
'import/no-relative-packages': '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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,20 +16,21 @@ | |
"types:check": "turbo run types:check", | ||
"version": "changeset version && pnpm install --lockfile-only" | ||
}, | ||
"prettier": "@vercel/style-guide/prettier", | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.9", | ||
"@typescript-eslint/eslint-plugin": "^8.9.0", | ||
"@typescript-eslint/parser": "^8.9.0", | ||
"@vercel/style-guide": "^6.0.0", | ||
"@eslint/js": "^9.12.0", | ||
"@types/eslint__js": "^8.42.3", | ||
"concurrently": "^9.0.1", | ||
"eslint": "^8.57.1", | ||
"eslint": "^9.12.0", | ||
"eslint-plugin-react": "^7.37.1", | ||
"eslint-plugin-react-hooks": "5.1.0-rc-bf7e210c-20241017", | ||
"eslint-plugin-tailwindcss": "^3.17.5", | ||
"prettier": "^3.3.3", | ||
"rimraf": "^6.0.1", | ||
"tsup": "8.3.0", | ||
"turbo": "2.1.3", | ||
"typescript": "^5.6.3", | ||
"typescript-eslint": "^8.10.0", | ||
"vitest": "^2.1.3" | ||
}, | ||
"packageManager": "[email protected]", | ||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import library from 'eslint-config-custom/library.js'; | ||
|
||
export default [ | ||
{ | ||
ignores: ['dist', 'node_modules', 'test/repo', 'test/repo-2'], | ||
}, | ||
...library, | ||
{ | ||
rules: { | ||
'import/no-relative-packages': '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 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 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import library from 'eslint-config-custom/library.js'; | ||
|
||
export default [ | ||
{ | ||
ignores: ['dist', 'node_modules', '*.test.ts'], | ||
}, | ||
...library, | ||
]; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import next from 'eslint-config-custom/next.js'; | ||
|
||
export default [ | ||
{ | ||
ignores: ['dist/', 'node_modules/', '*.test.ts', '*.output.js'], | ||
}, | ||
...next, | ||
{ | ||
rules: { | ||
'no-console': 'off', | ||
// handled by bundler | ||
'import/no-cycle': '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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import library from 'eslint-config-custom/next.js'; | ||
|
||
export default [ | ||
{ | ||
ignores: ['dist/', 'scripts/', 'node_modules/', 'template/'], | ||
}, | ||
...library, | ||
{ | ||
rules: { | ||
'import/no-relative-packages': '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 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import library from 'eslint-config-custom/library.js'; | ||
|
||
export default [ | ||
...library, | ||
{ | ||
ignores: ['dist/', 'node_modules/', '*.test.ts', '**/test/fixtures/'], | ||
}, | ||
]; |
Oops, something went wrong.