Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Rokt33r committed Mar 20, 2018
1 parent 2c30f0e commit 6c4206a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules/
compiled/
dist/
extra_scripts/
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"plugins": ["react"],
"rules": {
"no-useless-escape": 0,
"prefer-const": "warn",
"prefer-const": ["warn", {
"destructuring": "all"
}],
"no-unused-vars": "warn",
"no-undef": "warn",
"no-lone-blocks": "warn",
Expand Down
1 change: 0 additions & 1 deletion browser/main/lib/ipcClient.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import ConfigManager from './ConfigManager'
import store from 'browser/main/store'

const nodeIpc = require('node-ipc')
const { remote, ipcRenderer } = require('electron')
Expand Down

0 comments on commit 6c4206a

Please sign in to comment.