Skip to content

Commit 3ea0d9b

Browse files
authored
Merge commit from fork
Fully encrypt account data in all storage mediums
2 parents 66197dc + 280c2ac commit 3ea0d9b

34 files changed

+1828
-1606
lines changed

.eslintrc.js

+9-11
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
module.exports = {
22
root: true,
3-
parser: '@typescript-eslint/parser',
3+
parser: "@typescript-eslint/parser",
44
parserOptions: {
5-
"ecmaVersion": 6
5+
ecmaVersion: 6,
66
},
7-
plugins: [
8-
'@typescript-eslint',
9-
],
7+
plugins: ["@typescript-eslint"],
108
extends: [
11-
'eslint:recommended',
12-
'plugin:@typescript-eslint/eslint-recommended',
13-
'plugin:@typescript-eslint/recommended',
9+
"eslint:recommended",
10+
"plugin:@typescript-eslint/eslint-recommended",
11+
"plugin:@typescript-eslint/recommended",
1412
],
1513
env: {
16-
"amd": true,
17-
"node": true,
14+
amd: true,
15+
node: true,
1816
},
1917
rules: {
2018
"@typescript-eslint/no-use-before-define": "off",
2119
"@typescript-eslint/explicit-function-return-type": "off",
22-
}
20+
},
2321
};

0 commit comments

Comments
 (0)