Add npm-shrinkwrap.json to generated files (#3048)

This file is generated by the `npm shrinkwrap` command. It's large,
generated, and has a noisey diff. One similar file, php composer lock
files, is already ignored.

Closes https://github.com/github/linguist/issues/3045
This commit is contained in:
Charlie Briggs
2016-06-13 20:10:13 +01:00
committed by Arfon Smith
parent baf56666d4
commit c471990aa3
2 changed files with 17 additions and 6 deletions

View File

@@ -56,6 +56,7 @@ module Linguist
generated_net_specflow_feature_file? || generated_net_specflow_feature_file? ||
composer_lock? || composer_lock? ||
node_modules? || node_modules? ||
npm_shrinkwrap? ||
godeps? || godeps? ||
generated_by_zephir? || generated_by_zephir? ||
minified_files? || minified_files? ||
@@ -303,6 +304,13 @@ module Linguist
!!name.match(/node_modules\//) !!name.match(/node_modules\//)
end end
# Internal: Is the blob a generated npm shrinkwrap file.
#
# Returns true or false.
def npm_shrinkwrap?
!!name.match(/npm-shrinkwrap\.json/)
end
# Internal: Is the blob part of Godeps/, # Internal: Is the blob part of Godeps/,
# which are not meant for humans in pull requests. # which are not meant for humans in pull requests.
# #

View File

@@ -51,6 +51,9 @@ class TestGenerated < Minitest::Test
# Node modules # Node modules
generated_sample_without_loading_data("Dummy/node_modules/foo.js") generated_sample_without_loading_data("Dummy/node_modules/foo.js")
# npm shrinkwrap file
generated_sample_without_loading_data("Dummy/npm-shrinkwrap.json")
# Godep saved dependencies # Godep saved dependencies
generated_sample_without_loading_data("Godeps/Godeps.json") generated_sample_without_loading_data("Godeps/Godeps.json")
generated_sample_without_loading_data("Godeps/_workspace/src/github.com/kr/s3/sign.go") generated_sample_without_loading_data("Godeps/_workspace/src/github.com/kr/s3/sign.go")