Skip to content

Commit

Permalink
Merge commit from fork
Browse files Browse the repository at this point in the history
Fully encrypt account data in all storage mediums
  • Loading branch information
mymindstorm authored Jul 20, 2024
2 parents 66197dc + 280c2ac commit 3ea0d9b
Show file tree
Hide file tree
Showing 34 changed files with 1,828 additions and 1,606 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",
}
},
};
Loading

0 comments on commit 3ea0d9b

Please sign in to comment.