Skip to content
This repository has been archived by the owner on Nov 20, 2021. It is now read-only.

Commit

Permalink
Added config files
Browse files Browse the repository at this point in the history
  • Loading branch information
bfred-it committed Jul 27, 2015
1 parent 49a1775 commit 021326c
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
@@ -0,0 +1,12 @@
# http://editorconfig.org
root = true

[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
* text=auto
52 changes: 52 additions & 0 deletions .gitignore
@@ -0,0 +1,52 @@
# Development-time files
bower_components
node_modules
build/
dist/
public/assets
*.css.map

# OS files
.DS_Store
Desktop.ini
._*
Thumbs.db

# Software files
.idea/
*.iml
*.sublime-project
*.sublime-workspace

# Caches, logs, and temps
.sass-cache
.sublime-grunt.cache
.grunt # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.codekit-cache
npm-debug.log
.tmp
*.tmp
*.bak
*.log
/caches/
logs
.env # Ignore .env configuration files

# Binaries
*.psd
psd
docs
*.gz
/backups/


# Laravel
/bootstrap/compiled.php
.env.*.php
.env.php


# Node Runtime data
pids
*.pid
*.seed
24 changes: 24 additions & 0 deletions .jshintrc
@@ -0,0 +1,24 @@
{// https://gist.github.com/haschek/2595796
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"validthis": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"white": false,
"browser": true,
"predef": []
}

0 comments on commit 021326c

Please sign in to comment.