Skip to content

Commit

Permalink
fix(refactor): added missing .dot files
Browse files Browse the repository at this point in the history
  • Loading branch information
azachar committed Oct 15, 2016
1 parent cf454d4 commit aa6ff83
Show file tree
Hide file tree
Showing 5 changed files with 102 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "bower_components"
}
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -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
17 changes: 17 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -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
}
}
11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
node_modules
bower_components
dist/maps
coverage
node_modules/
bower_components/
coverage/
.sass-cache/
.idea/
.tmp/
dist/maps/
62 changes: 62 additions & 0 deletions .yo-rc.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
}

0 comments on commit aa6ff83

Please sign in to comment.