diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..eb9a211 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +; EditorConfig is awesome: http://EditorConfig.org + +root = true; + +[*] +trim_trailing_whitespace = true +insert_final_newline = true + +[*.js] +indent_style = space +indent_size = 2 diff --git a/.gitignore b/.gitignore index 661be62..707e97c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,13 @@ *.swp *.swo *.orig +.idea +*.iml tmp/ ext/ -node_modules -bower_components +node_modules/ +coverage/ +.grunt/ +npm-debug.log +bower_components/ +.grunt \ No newline at end of file diff --git a/.jshintrc b/.jshintrc index 9811c27..51b4ea6 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,15 +1,15 @@ { "globals": { - "define" : true, - "require" : true, - "module" : true, - "exports" : true, - "$" : true, - "jQuery" : true, - "_" : true, - "Backbone" : true, - "Syphon" : true, - "TypeRegistry" : true + "define" : true, + "require" : true, + "module" : true, + "exports" : true, + "$" : true, + "jQuery" : true, + "_" : true, + "Backbone" : true, + "Syphon" : true, + "TypeRegistry": true }, "bitwise" : true, @@ -24,6 +24,7 @@ "newcap" : true, "noarg" : true, "noempty" : true, + "nonbsp" : true, "nonew" : true, "plusplus" : false, "quotmark" : "single", @@ -53,6 +54,7 @@ "loopfunc" : false, "maxerr" : 50, "multistr" : false, + "notypeof" : false, "proto" : false, "scripturl" : false, "smarttabs" : false, @@ -60,6 +62,7 @@ "sub" : false, "supernew" : false, "validthis" : false, + "noyield" : false, "browser" : true, "couch" : false, diff --git a/.npmignore b/.npmignore index c7411d2..6ecebd5 100644 --- a/.npmignore +++ b/.npmignore @@ -1,5 +1,13 @@ +api +bower_components +src +spec +.editorconfig +.gitignore +.jshintrc +.travis.yml +bower.json component.json +CONTRIBUTING.md Gruntfile.js -SpecRunner.html -.jshintrc -spec/ \ No newline at end of file +SpecRunner.html \ No newline at end of file