bfc-lint 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 11dbe747911f2dee626c40934868f2ede0b6f30c
4
- data.tar.gz: 9fcc4b60cd7062a018134e1f6ff5f5fff2d568db
3
+ metadata.gz: ea54e097da2e6f421f11f8be690e807c77760961
4
+ data.tar.gz: 0561c2728e872bd66822d9f694b98831988d5eb8
5
5
  SHA512:
6
- metadata.gz: 477adb51d051ef50df6a92edbc4c6fed2d1b7c23c9521dafdf1dd3619361dbbfd3b24a69d09f3725b3cae1472a94e24aaff6d3397d87d1d6037349d627019663
7
- data.tar.gz: ac1c87466c7c08a06192a07e57f6f0cdaed9343ce81aef0944c917f141d0427b4c7ee0439c082e6c7172480401bfca455da805b0cef8f03e8d720fd2ca492922
6
+ metadata.gz: 24fbd06b94cfeedfa0a23c422705f3772100426948f5af7e6e236b78d407469b46ede5002092cf12367232511db89121a72d1c523a0f2a6f562a66ee89a28fdd
7
+ data.tar.gz: fa506b30f636b98947c754ad6cd18a33e24f33a17256b222b1ca5387b82fdbcfef0ff38849a5ff886c9498c3929fa5385f5cf22c4b96109200263bbac79365c2
@@ -24,7 +24,9 @@ module BFCLint
24
24
  all_lint_files.each do |file|
25
25
  puts "Installing #{file}..."
26
26
  file_parts = file.split("/")
27
- file_name = '.' + file_parts.last
27
+ unless file_parts.last == "README.md"
28
+ file_name = '.' + file_parts.last
29
+ end
28
30
  FileUtils.cp(file, "lintfiles/#{file_name}")
29
31
  FileUtils.ln_s("lintfiles/#{file_name}", file_name)
30
32
  end
@@ -34,7 +36,9 @@ module BFCLint
34
36
  all_lint_files.each do |file|
35
37
  puts "Removing #{file}..."
36
38
  file_parts = file.split("/")
37
- file_name = '.' + file_parts.last
39
+ unless file_parts.last == "README.md"
40
+ file_name = '.' + file_parts.last
41
+ end
38
42
  FileUtils.rm_rf(file_name)
39
43
  end
40
44
  FileUtils.rm_rf("lintfiles/")
@@ -1,3 +1,3 @@
1
1
  module BFCLint
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -0,0 +1,5 @@
1
+ # Barefoot Coders Linting Defaults
2
+
3
+ ## Global Changes
4
+
5
+ If you want to make a change across all repositories, please submit a pull request to [https://github.com/BarefootCoders/hound-defaults](the repository).
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bfc-lint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Berlinsky
@@ -87,6 +87,7 @@ files:
87
87
  - lib/bfc-lint.rb
88
88
  - lib/bfc-lint/generator.rb
89
89
  - lib/bfc-lint/version.rb
90
+ - linter_configurations/README.md
90
91
  - linter_configurations/codeclimate.yml
91
92
  - linter_configurations/eslintignore
92
93
  - linter_configurations/eslintrc