Skip to content

Commit

Permalink
fix: eslint config (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jos van Bakel authored Nov 20, 2018
1 parent ed75abb commit 131853a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -205,18 +205,18 @@
"[methods]",
"[everything-else]"
],
groups: {
methods: [
"groups": {
"methods": [
{
sort: 'alphabetical',
type: 'method'
"sort": "alphabetical",
"type": "method"
}
],
"conventional-private-methods": [
{
name: '/_.+/',
sort: 'alphabetical',
type: 'method',
"name": "/_.+/",
"sort": "alphabetical",
"type": "method"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/js/bg/lib/crypto.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Crypto {
if (this.app.env.isBrowser) {
let binary = ''
let bytes = new Uint8Array(data)
let len = bytes.byteLength;
let len = bytes.byteLength
for (let i = 0; i < len; i++) {
binary += String.fromCharCode(bytes[i])
}
Expand Down

0 comments on commit 131853a

Please sign in to comment.