app/js/main/bw.js
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 18
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 15
mnd 0
bc 0
fnc 0
dl 0
loc 18
bpm 0
cpm 0
noi 1
c 0
b 0
f 0
1
// jshint esversion: 8
2
3
const electron = require('electron'),
4
  debug = require('debug')('main.bw');
0 ignored issues
show
Unused Code introduced by
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