Skip to content

Commit

Permalink
Add changes requested by Ledger (#109)
Browse files Browse the repository at this point in the history
* 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
capt-nemo429 authored Sep 26, 2023
1 parent 6d8ef2c commit 8aee05f
Show file tree
Hide file tree
Showing 34 changed files with 5,509 additions and 2,480 deletions.
37 changes: 37 additions & 0 deletions .eslintrc
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
}
}
]
}
30 changes: 0 additions & 30 deletions .eslintrc.js

This file was deleted.

Loading

0 comments on commit 8aee05f

Please sign in to comment.