Skip to content

Commit

Permalink
Merge pull request #91 from thencc/main
Browse files Browse the repository at this point in the history
syncing @beta to @latest
  • Loading branch information
youraerials authored Jul 25, 2023
2 parents 9ab43b6 + f6b707e commit 3c2f246
Show file tree
Hide file tree
Showing 122 changed files with 13,206 additions and 23,856 deletions.
53 changes: 53 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"root": true,
"extends": [
"eslint:recommended",
"typescript",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"browser": true,
"process": true
},
"rules": {
"no-prototype-builtins": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
],
"quotes": [
"warn",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": false
}
],
"semi": [
"warn",
"always"
],
"indent": [
"warn",
"tab"
],
"no-any": 0,
"no-mixed-spaces-and-tabs": "warn",
"no-trailing-spaces": "error",
"vue/no-v-model-argument": "off"
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ test/.env
algo.config.ts
src/contracts/priv
tests-ts/dist
dist_*/
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.formatOnSave": true
}
Loading

0 comments on commit 3c2f246

Please sign in to comment.