-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Probably a good idea to include the new directory
- Loading branch information
Showing
6 changed files
with
136 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
'use strict'; | ||
|
||
var generators = require('yeoman-generator'); | ||
|
||
module.exports = generators.Base.extend({ | ||
configuring: function() { | ||
this.fs.copy( | ||
this.templatePath('editorconfig'), | ||
this.destinationPath('.editorconfig') | ||
); | ||
|
||
this.fs.copy( | ||
this.templatePath('gitattributes'), | ||
this.destinationPath('.gitattributes') | ||
); | ||
|
||
this.fs.copy( | ||
this.templatePath('gitignore'), | ||
this.destinationPath('.gitignore') | ||
); | ||
|
||
this.fs.copy( | ||
this.templatePath('jscsrc'), | ||
this.destinationPath('.jscsrc') | ||
); | ||
|
||
this.fs.copy( | ||
this.templatePath('jshintrc'), | ||
this.destinationPath('.jshintrc') | ||
); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# .gitignore for jekyllized projects | ||
|
||
# Ignore hidden folders | ||
# This takes care of .tmp, .sass-cache, and many others | ||
.*/ | ||
|
||
# OSX | ||
._* | ||
.AppleDouble | ||
.DS_Store | ||
.localized | ||
.LSOverride | ||
.Spotlight-V100 | ||
.Trashes | ||
Icon | ||
|
||
# Windows | ||
Desktop.ini | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# Linux | ||
*~ | ||
|
||
# Tags | ||
# Ignore tags created by etags and ctags | ||
TAGS | ||
tags | ||
|
||
# Always-ignore files and folders # | ||
*.diff | ||
*.err | ||
*.log | ||
*.orig | ||
*.rej | ||
*.swn | ||
*.swo | ||
*.swp | ||
._* | ||
*~ | ||
|
||
# Ignore packages # | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# Packages | ||
node_modules/* | ||
.tmp | ||
test/ | ||
|
||
# Sublime | ||
*.sublime-project | ||
*.sublime-workspace | ||
*.sublime-projectcompletions | ||
|
||
app/_bower_components | ||
|
||
# Output folders | ||
serve | ||
site | ||
|
||
# hide the AWS and Rsync credentials file | ||
aws-credentials.json | ||
rsync-credentials.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"preset": "google" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"esnext": true, | ||
"bitwise": false, | ||
"curly": false, | ||
"eqeqeq": true, | ||
"eqnull": true, | ||
"immed": true, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "double", | ||
"undef": true, | ||
"strict": false, | ||
"trailing": true, | ||
"smarttabs": true | ||
} |