Passed
Push — master ( fa13eb...33d68f )
by Felipe Catão do
01:03
created

LavineWiki/js/main.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 18
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 12
mnd 0
bc 0
fnc 1
dl 0
loc 18
rs 10
bpm 0
cpm 1
noi 1
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A functionsClass.gotoLink 0 3 1
1
import menu from "../components/menu.js"
2
import EngineApp from '../../Framework/engine.js'
3
import homePage from "../pages/home.js"
4
import routes from '../routes/routes.js'
5
6
var eng=new EngineApp()
7
var rto = new routes()
0 ignored issues
show
Coding Style Best Practice introduced by
By convention, constructors like routes should be capitalized.
Loading history...
8
//renderizar o menu
9
rto.routesCreated()
10
menu(1)
11
12
class functionsClass{
13
    gotoLink(){
14
15
    }
16
}
17
18
export default functionsClass