Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 16 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 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 |