Passed
Push — master ( 53cb72...a63a52 )
by Florian
08:04 queued 05:07
created

src/store/state.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 16
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
nc 1
dl 0
loc 16
ccs 1
cts 1
cp 1
crap 0
rs 10
c 1
b 0
f 0
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 0
1 6
const state = {
2
	lastCommentTime: null,
3
	orderBy: 'oldest',
4
	comments: [],
5
	pagination: {},
6
	user: null,
7
	config: {
8
		threshold: 60,
9
		maxDepth: 1,
10
		loginRequired: false,
11
		allowEditing: true,
12
		allowDeleting: true
13
	}
14
}
15
16
export default state;
17