Passed
Pull Request — master (#28)
by Felipe Catão do
01:52
created

hj.teste   A

Complexity

Conditions 3

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 3
1
//Criar aqui o exportador do WebPack//
2
import routesEngine from './routesEngine.js'
3
import RenderEngine from './render.js'
4
import Components from './components.js'
5
import Security from './security.js'
6
import reactive from './reactive.js'
7
8
const RoutesEngine = ()=>{
0 ignored issues
show
Unused Code introduced by
The constant RoutesEngine seems to be never used. Consider removing it.
Loading history...
9
    const RouteEngine = new routesEngine()
0 ignored issues
show
Coding Style Best Practice introduced by
By convention, constructors like routesEngine should be capitalized.
Loading history...
10
    return RouteEngine
11
}
12
13
const Renders = () =>{
0 ignored issues
show
Unused Code introduced by
The constant Renders seems to be never used. Consider removing it.
Loading history...
14
    const Renders = new RenderEngine()
15
    return Renders
16
}
17
18
class hj{
19
    teste(){
20
        
21
    }
22
}
23
24
export default new hj
0 ignored issues
show
Coding Style Best Practice introduced by
By convention, constructors like hj should be capitalized.
Loading history...