Skip to content

Commit

Permalink
Chore: update deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
evilebottnawi committed Oct 9, 2017
1 parent d72e2d8 commit 820c369
Show file tree
Hide file tree
Showing 11 changed files with 10,777 additions and 10,436 deletions.
13 changes: 11 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# editorconfig.org
# For more information please visit http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 4
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.php]
indent_size = 4

[*.py]
indent_size = 4

[*.{xml,xml.dist}]
indent_size = 4
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

222 changes: 188 additions & 34 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,43 +1,197 @@
# Autodetect text files
## GITATTRIBUTES FOR WEB PROJECTS
#
# These settings are for any web project.
#
# Details per file setting:
# text These files should be normalized (i.e. convert CRLF to LF).
# binary These files are binary and should be left untouched.
#
# Note that binary is a macro for -text -diff.
######################################################################

## AUTO-DETECT
## Handle line endings automatically for files detected as
## text and leave all files detected as binary untouched.
## This will handle all files NOT defined below.
* text=auto

# ...Unless the name matches the following overriding patterns

# Definitively text files
.* text eol=lf
*.php text eol=lf
*.css text eol=lf
*.js text eol=lf
*.html text eol=lf
*.json text eol=lf
*.less text eol=lf
*.scss text eol=lf
*.sass text eol=lf
*.txt text eol=lf
*.md text eol=lf
*.markdown text eol=lf
*.xml text eol=lf
*.json text eol=lf
*.bat text eol=lf
*.sh text eolf=lf
*.svg text eol=lf
*.sql text eol=lf
*.xml text eol=lf
*.yml text eol=lf

# Ensure those won't be messed up with
## Source code
*.bat text eol=crlf
*.coffee text
*.css text
*.htm text
*.html text
*.inc text
*.ini text
*.js text
*.json text
*.jsx text
*.less text
*.od text
*.onlydata text
*.php text
*.pl text
*.py text
*.rb text
*.sass text
*.scm text
*.scss text
*.sh text eol=lf
*.sql text
*.styl text
*.tag text
*.ts text
*.tsx text
*.xml text
*.xhtml text

## Docker
*.dockerignore text
Dockerfile text

## Documentation
*.markdown text
*.md text
*.mdwn text
*.mdown text
*.mkd text
*.mkdn text
*.mdtxt text
*.mdtext text
*.txt text
AUTHORS text
CHANGELOG text
CHANGES text
CONTRIBUTING text
COPYING text
copyright text
*COPYRIGHT* text
INSTALL text
license text
LICENSE text
NEWS text
readme text
*README* text
TODO text

## Templates
*.dot text
*.ejs text
*.haml text
*.handlebars text
*.hbs text
*.hbt text
*.jade text
*.latte text
*.mustache text
*.njk text
*.phtml text
*.tmpl text
*.tpl text
*.twig text

## Linters
.csslintrc text
.eslintrc text
.htmlhintrc text
.jscsrc text
.jshintrc text
.jshintignore text
.stylelintrc text

## Configs
*.bowerrc text
*.cnf text
*.conf text
*.config text
.browserslistrc text
.editorconfig text
.gitattributes text
.gitconfig text
.gitignore text
.htaccess text
*.npmignore text
*.yaml text
*.yml text
browserslist text
Makefile text
makefile text

## Heroku
Procfile text
.slugignore text

## Graphics
*.ai binary
*.bmp binary
*.eps binary
*.gif binary
*.ico binary
*.png binary
*.jng binary
*.jp2 binary
*.jpg binary
*.jpeg binary
*.jpx binary
*.jxr binary
*.pdf binary
*.png binary
*.psb binary
*.psd binary
*.svg text
*.svgz binary
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary
*.gif binary
*.eot binary

## Audio
*.kar binary
*.m4a binary
*.mid binary
*.midi binary
*.mp3 binary
*.ogg binary
*.ra binary

## Video
*.3gpp binary
*.3gp binary
*.as binary
*.asf binary
*.asx binary
*.fla binary
*.flv binary
*.m4v binary
*.mng binary
*.mov binary
*.mp4 binary
*.mpeg binary
*.mpg binary
*.ogv binary
*.swc binary
*.swf binary
*.webm binary

## Archives
*.7z binary
*.gz binary
*.jar binary
*.rar binary
*.tar binary
*.zip binary

## Fonts
*.ttf binary
*.eot binary
*.otf binary
*.woff binary
*.woff2 binary
*.mp3 binary
*.m4a binary
*.mp4 binary
*.m4p binary
*.acc binary

## Executables
*.exe binary
*.pyc binary

## Lock files
package-lock.json -diff
yarn.lock -diff
composer.lock -diff
Loading

0 comments on commit 820c369

Please sign in to comment.