Completed
Push — master ( a3438b...9299d4 )
by Rafael
01:25
created

src/controls/color/index.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 7
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
wmc 0
nc 1
mnd 0
bc 0
fnc 0
dl 0
loc 7
rs 10
bpm 0
cpm 0
noi 1
c 0
b 0
f 0
1
export { Renderer as ColorPalette } from './js/renderer.js';
0 ignored issues
show
Bug introduced by
The variable Renderer seems to be never declared. If this is a global, consider adding a /** global: Renderer */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
2
export * from './js/renderer.js';
3
export * from './js/palettes.js';
4
export * from './js/generate.js';
5
export * from './js/selection.js';
6
export * from './js/config.js';
7
export * from './js/material.js';
8
9
// export { SassCompiler } from './js/sass-compiler.js';
10