less_builder   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 0
1
from SCons.Script import *
2
3
lessbuilder = Builder(action='lessc $SOURCE $TARGET',
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable Builder does not seem to be defined.
Loading history...
4
                      suffix='.css',
5
                      src_suffix='.less')
6