Skip to content
This repository was archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
Generated basic Yeoman project.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Chapman committed Dec 4, 2013
1 parent 510974c commit 5c49dfa
Show file tree
Hide file tree
Showing 19 changed files with 10,180 additions and 25 deletions.
25 changes: 25 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = space
indent_size = 4

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.coffee]
indent_style = space
indent_size = 2
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
65 changes: 41 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,42 @@
# Created by http://gitignore.io

### Node ###
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
node_modules

### Bower ###
app/bower_components


### Linux ###
.*
!.gitignore
!.git*
!.editorconfig
!.jshintrc
!.npmignore
!.travis.yml
*~
*.pyc
\#*\#
.\#*
*.swp
/node_modules
/var
/rpmbuild
/npm-debug.log
/resources/static/build
/resources/static/production
/resources/static/i18n
/resources/static/common/js/lib/bidbundle.js
/resources/static/common/js/lib/gobbledygook.js
/resources/static/dialog/views/site
.DS_Store
Thumbs.db
/locale
/resources/email_templates/email-test.html
/automation-tests/node_modules
/automation-tests/results
/automation-tests/*.jar
local.json
/server/var
sauce_connect.log*


### SASS ###
### SASS Ignores - "Sassy CSS" http://sass-lang.com/
*.sass-cache


### Yeoman ###
dist
test/temp
22 changes: 22 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"jquery": true
}
Loading

0 comments on commit 5c49dfa

Please sign in to comment.