Issues (103)

app/js/main/bw.js (1 issue)

Severity
1
// jshint esversion: 8
2
3
const electron = require('electron'),
4
  debug = require('debug')('main.bw');
0 ignored issues
show
The constant debug seems to be never used. Consider removing it.
Loading history...
5
6
const {
7
  app,
8
  BrowserWindow,
9
  Menu,
10
  ipcMain,
11
  dialog,
12
  remote
13
} = electron;
14
15
16
require('./bw/fileinput'); // File input
17
require('./bw/wordlistinput'); // Wordlist input
18
require('./bw/process'); // Process stage
19
require('./bw/export'); // Export stage
20
require('../common/stringFormat'); // String format
21