Skip to content

Commit

Permalink
Update development files & create new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jelte Lagendijk committed Feb 3, 2016
1 parent d39769b commit d2f97cf
Show file tree
Hide file tree
Showing 6 changed files with 264 additions and 148 deletions.
11 changes: 8 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@ test/javasource/
test/deployment/
test/.classpath
test/.project
test/theme/
test/userlib/
test/.classpath
test/.project
*.launch
*.tmp
*.lock
*.bak
.idea/
*.mws

dist/

node_modules/
.editorconfig
*DS_Store*
.vscode/
dist/
*.bak
22 changes: 22 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
// Enforcing
"curly" : false,
"forin" : false,
"latedef" : "nofunc",
"newcap" : true,
"quotmark" : "double",
"eqeqeq" : true,
"undef" : true,
"globals" : {
"mendix" : false,
"mx" : false
},

// Relaxing
"laxbreak" : true,

// Environments
"browser" : true,
"devel" : true,
"dojo" : true
}
Loading

0 comments on commit d2f97cf

Please sign in to comment.