Skip to content

Commit

Permalink
Fully encrypt account data in all storage mediums
Browse files Browse the repository at this point in the history
* Refactor encryption code
* Fix #704
* Initial work towards fixing longstanding sync conflict issues (multi-key support)
  • Loading branch information
mymindstorm committed Jul 20, 2024
1 parent 5e8df8e commit 17aa206
Show file tree
Hide file tree
Showing 39 changed files with 1,890 additions and 1,685 deletions.
20 changes: 9 additions & 11 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parser: "@typescript-eslint/parser",
parserOptions: {
"ecmaVersion": 6
ecmaVersion: 6,
},
plugins: [
'@typescript-eslint',
],
plugins: ["@typescript-eslint"],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
],
env: {
"amd": true,
"node": true,
amd: true,
node: true,
},
rules: {
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/explicit-function-return-type": "off",
}
},
};
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run-tests:
runs-on: ubuntu-latest
name: Run tests
needs: [ build ]
needs: [build]

steps:
- uses: actions/checkout@v2
Expand All @@ -53,9 +53,9 @@ jobs:
- name: Install dependencies
run: npm ci
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true'
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: "true"

- name: Test code
uses: mujo-code/puppeteer-headful@master
uses: mymindstorm/puppeteer-headful@8f745c770f7f4c0f9f332d7c43a775f90e53779a
with:
args: npm test
Loading

0 comments on commit 17aa206

Please sign in to comment.