diff --git a/.bowerrc b/.bowerrc new file mode 100644 index 0000000..69fad35 --- /dev/null +++ b/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "bower_components" +} diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e717f5e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..e622f58 --- /dev/null +++ b/.eslintrc @@ -0,0 +1,17 @@ +{ + "extends": "eslint:recommended", + "plugins": ["angular"], + "env": { + "es6": true, + "browser": true, + "jasmine": true + }, + "ecmaFeatures": { + "modules": true + }, + "globals": { + "angular": true, + "module": true, + "inject": true + } +} diff --git a/.gitignore b/.gitignore index cfc115d..49f6c05 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,7 @@ -node_modules -bower_components -dist/maps -coverage +node_modules/ +bower_components/ +coverage/ +.sass-cache/ +.idea/ +.tmp/ +dist/maps/ diff --git a/.yo-rc.json b/.yo-rc.json new file mode 100644 index 0000000..7ba9294 --- /dev/null +++ b/.yo-rc.json @@ -0,0 +1,62 @@ +{ + "generator-gulp-angular": { + "version": "1.1.1", + "props": { + "angularVersion": "~1.5.3", + "angularModules": [ + { + "key": "touch", + "module": "ngTouch" + }, + { + "key": "sanitize", + "module": "ngSanitize" + } + ], + "jQuery": { + "key": "jqLite" + }, + "resource": { + "key": "$http", + "module": null + }, + "router": { + "key": "ui-router", + "module": "ui.router" + }, + "ui": { + "key": "bootstrap", + "module": null + }, + "bootstrapComponents": { + "key": "ui-bootstrap", + "module": "ui.bootstrap" + }, + "cssPreprocessor": { + "key": "node-sass", + "extension": "scss" + }, + "jsPreprocessor": { + "key": "babel", + "extension": "js", + "srcExtension": "es6" + }, + "htmlPreprocessor": { + "key": "jade", + "extension": "jade" + }, + "foundationComponents": { + "name": null, + "version": null, + "key": null, + "module": null + }, + "paths": { + "src": "src", + "dist": "dist", + "e2e": "e2e", + "tmp": ".tmp" + } + } + } +} \ No newline at end of file