-
Notifications
You must be signed in to change notification settings - Fork 2
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
SSen
committed
Jul 23, 2024
1 parent
3733ab5
commit a1372d4
Showing
46 changed files
with
10,248 additions
and
9,001 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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
node_modules | ||
fixtures | ||
out | ||
src/**/public | ||
/examples/** |
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,26 @@ | ||
const ext = '{ts,tsx,mts,cts,js,jsx,mjs,cjs}'; | ||
|
||
module.exports = { | ||
extends: ['plugin:unicorn/recommended', 'react-app', 'prettier'], | ||
|
||
overrides: [ | ||
{ | ||
files: [`**/*.${ext}`], | ||
rules: { | ||
'unicorn/prevent-abbreviations': 'off', | ||
'unicorn/filename-case': 'off', | ||
'unicorn/no-negated-condition': 'off', | ||
'unicorn/no-array-reduce': 'off', | ||
'unicorn/no-null': 'off', | ||
'unicorn/no-useless-undefined': 'off', | ||
'unicorn/no-lonely-if': 'off', | ||
'unicorn/no-array-callback-reference': 'off', | ||
'unicorn/prefer-type-error': 'off', | ||
|
||
'no-shadow': 'off', | ||
'@typescript-eslint/no-shadow': ['warn'], | ||
'@typescript-eslint/consistent-type-imports': 'error' | ||
}, | ||
}, | ||
], | ||
}; |
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 |
---|---|---|
|
@@ -26,4 +26,5 @@ yarn-error.log* | |
# output | ||
coverage/ | ||
out/ | ||
test/storage/ | ||
test/storage/ | ||
dist/ |
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 @@ | ||
_ |
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,10 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn run markdown-source-import README.md --git-add | ||
|
||
cp README.md packages/src/multiplerun/README.md; | ||
|
||
yarn run lint-staged; | ||
|
||
yarn workspace @workspace/packages run precommit; | ||
npm run precommit |
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,7 @@ | ||
{ | ||
"semi": true, | ||
"singleQuote": true, | ||
"quoteProps": "consistent", | ||
"trailingComma": "all", | ||
"bracketSpacing": true | ||
} |
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
Oops, something went wrong.