From b9bec693781ed9efc351f1816f468623d64de484 Mon Sep 17 00:00:00 2001 From: James Messinger Date: Sun, 3 Apr 2016 19:32:16 -0500 Subject: [PATCH] updated tooling files --- .gitattributes | 40 ---------------------------------------- .gitignore | 1 + .npmignore | 1 + .travis.yml | 2 ++ karma.conf.js | 1 + 5 files changed, 5 insertions(+), 40 deletions(-) delete mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 9ef7e9d3..00000000 --- a/.gitattributes +++ /dev/null @@ -1,40 +0,0 @@ -# Specifies how Git should treat certain file types -# https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes - -# Convert all line endings to CRLF, so they work with Windows programs -* text=auto - -# Explicitly declare text files you want to always be normalized and converted -# to native line endings on checkout. -*.txt text -*.html text -*.md text -*.css text -*.scss text -*.min text -*.map text -*.js text -*.json text -*.config text -*.xml text -*.njsproj text -*.java text -*.sql text -*.iml text -*.svg text - -# Declare files that will always have CRLF line endings on checkout. -*.sln text eol=crlf -*.csproj text eol=crlf -*.jsproj text eol=crlf -*.njsproj text eol=crlf -*.vbproj text eol=crlf - -# Denote all files that are truly binary and should not be modified. -*.gif binary -*.png binary -*.jpg binary -*.jpeg binary -*.bmp binary -*.dll binary -*.exe binary diff --git a/.gitignore b/.gitignore index 15d4abb1..8f09d1d2 100755 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ **/*~ **/._* **/.DS_Store +*.sublime-* npm-debug.log /.idea /coverage diff --git a/.npmignore b/.npmignore index 177b87dd..fd428946 100644 --- a/.npmignore +++ b/.npmignore @@ -1,6 +1,7 @@ **/*~ **/._* **/.DS_Store +*.sublime-* npm-debug.log /.idea /coverage diff --git a/.travis.yml b/.travis.yml index 6899b997..e286be7b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,8 @@ matrix: env: KARMA=false - node_js: 4 env: KARMA=false + - node_js: 5 + env: KARMA=false # Local Browsers - node_js: 0.12 diff --git a/karma.conf.js b/karma.conf.js index 24c6116a..7d8cdcfb 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -168,6 +168,7 @@ function configureSauceLabs(config) { config.exclude = (config.exclude || []).concat([ 'tests/specs/invalid/*', 'tests/specs/unknown/*', + 'tests/specs/validate-schema/*', 'tests/specs/real-world/*' ]);