Skip to content

Commit d2f97cf

Browse files
author
Jelte Lagendijk
committed
Update development files & create new version
1 parent d39769b commit d2f97cf

File tree

6 files changed

+264
-148
lines changed

6 files changed

+264
-148
lines changed

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,19 @@ test/javasource/
22
test/deployment/
33
test/.classpath
44
test/.project
5+
test/theme/
6+
test/userlib/
7+
test/.classpath
8+
test/.project
59
*.launch
610
*.tmp
711
*.lock
8-
*.bak
912
.idea/
10-
*.mws
13+
14+
dist/
1115

1216
node_modules/
17+
.editorconfig
1318
*DS_Store*
1419
.vscode/
15-
dist/
20+
*.bak

.jshintrc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// Enforcing
3+
"curly" : false,
4+
"forin" : false,
5+
"latedef" : "nofunc",
6+
"newcap" : true,
7+
"quotmark" : "double",
8+
"eqeqeq" : true,
9+
"undef" : true,
10+
"globals" : {
11+
"mendix" : false,
12+
"mx" : false
13+
},
14+
15+
// Relaxing
16+
"laxbreak" : true,
17+
18+
// Environments
19+
"browser" : true,
20+
"devel" : true,
21+
"dojo" : true
22+
}

0 commit comments

Comments
 (0)