-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add changes requested by Ledger (#109)
* update ledger logo * add checking link * improve ledger signing and connection flow * fix some lint warnings * upgrade fleet * set linting rules * add `ConfirmOnDevice` component
- Loading branch information
1 parent
6d8ef2c
commit 8aee05f
Showing
34 changed files
with
5,509 additions
and
2,480 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"root": true, | ||
"parser": "vue-eslint-parser", | ||
"parserOptions": { "parser": "@typescript-eslint/parser" }, | ||
"env": { "es6": true }, | ||
"ignorePatterns": ["node_modules", "dist", "coverage", "jest.config.ts", "vue.config.js"], | ||
"plugins": ["import"], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:vue/vue3-recommended", | ||
"prettier", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"globals": { | ||
"BigInt": true, | ||
"console": true, | ||
"WebAssembly": true, | ||
"chrome": true, | ||
"process": true, | ||
"Buffer": true | ||
}, | ||
"rules": { | ||
"vue/component-api-style": ["warn", ["script-setup", "composition"]], | ||
"no-console": "error", | ||
"@typescript-eslint/explicit-module-boundary-types": "off", | ||
"import/order": ["warn", { "alphabetize": { "order": "asc" } }], | ||
"sort-imports": ["warn", { "ignoreDeclarationSort": true, "ignoreCase": true }] | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["**/__tests__/*.{j,t}s?(x)", "**/tests/unit/**/*.spec.{j,t}s?(x)"], | ||
"env": { | ||
"jest": true | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.