From 6c80251f3faeca29698db51e91ba69d3ae299265 Mon Sep 17 00:00:00 2001 From: Jon Sherrard Date: Thu, 16 Jun 2016 12:28:01 +0100 Subject: [PATCH] config files --- .editorconfig | 16 +++++++++++++ .gitignore | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8c611e9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# editorconfig.org +root = true + +[*] +indent_style = space +end_of_line = lf +indent_size = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.{html,php,twig,md}] +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc38002 --- /dev/null +++ b/.gitignore @@ -0,0 +1,66 @@ +## Node.js +lib-cov +*.seed +*.log +*.csv +*.dat +*.out +*.pid +*.gz +pids +logs/* +results +npm-debug.log +node_modules + +## Bower +# src/components + +## Sass +.sass-cache + +## OS X +.DS_Store +.AppleDouble +.LSOverride +Icon +._* +.Spotlight-V100 +.Trashes + +## Windows +Thumbs.db +ehthumbs.db +Desktop.ini +$RECYCLE.BIN/ + +# Ignore .scss files in build caused by the way gulp/gulp-ruby-sass handles errors +build/**/*.scss + +# Map files +*.map + +# Local testing folder +testing + +# Vagrant +.vagrant + +# Web/PHPstorm +.idea +.idea/ + +# WordPress +wp-config-local.php +wp-config-live.php + +# PHP Testing +!app/phpspec.yaml +!app/phpunit.xml + +#Composer +/vendor +composer.lock + +.idea/encodings.xml +.workspace