-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move FEES to @osmonauts/utils remove all babel better workspace tree-shaking support remove dist/codegen, use tree-shaking import style
- Loading branch information
1 parent
a923d94
commit 61cdc67
Showing
2,005 changed files
with
462,083 additions
and
599,729 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 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,39 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true, | ||
"jest": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier" | ||
], | ||
"overrides": [], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["@typescript-eslint", "simple-import-sort", "unused-imports"], | ||
"rules": { | ||
"simple-import-sort/imports": 1, | ||
"simple-import-sort/exports": 1, | ||
"unused-imports/no-unused-imports": 1, | ||
"@typescript-eslint/no-unused-vars": [ | ||
1, | ||
{ | ||
"argsIgnorePattern": "React|res|next|^_" | ||
} | ||
], | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"@typescript-eslint/no-var-requires": 0, | ||
"no-console": 0, | ||
"@typescript-eslint/ban-ts-comment": 0, | ||
"prefer-const": 0, | ||
"no-case-declarations": 0, | ||
"no-implicit-globals": 0, | ||
"@typescript-eslint/no-unsafe-declaration-merging": 0 | ||
} | ||
} |
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,8 +1,5 @@ | ||
.DS_Store | ||
.eslintcache | ||
*.log | ||
**/node_modules | ||
coverage | ||
packages/**/build | ||
packages/**/main | ||
.vscode | ||
**/node_modules/ | ||
**/.DS_Store | ||
**/dist | ||
**/yarn-error.log | ||
lerna-debug.log |
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,6 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": false | ||
} |
Oops, something went wrong.