-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixing check when todo file was deleted * bumping version to 0.1.97
- Loading branch information
Showing
10 changed files
with
91 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
5 changes: 5 additions & 0 deletions
5
tests/fixtures/contains_stale_violations_no_file/packs/bar/app/services/bar.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module Bar | ||
def bar_you | ||
Foo.foo_you | ||
end | ||
end |
1 change: 1 addition & 0 deletions
1
tests/fixtures/contains_stale_violations_no_file/packs/bar/package.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
enforce_privacy: true |
16 changes: 16 additions & 0 deletions
16
tests/fixtures/contains_stale_violations_no_file/packs/bar/package_todo.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This file contains a list of dependencies that are not part of the long term plan for the | ||
# 'packs/foo' package. | ||
# We should generally work to reduce this list over time. | ||
# | ||
# You can regenerate this file using the following command: | ||
# | ||
# bin/packwerk update-todo | ||
--- | ||
packs/foo: | ||
"::Foo": | ||
violations: | ||
- privacy | ||
files: | ||
- packs/bar/app/services/bar.rb | ||
- packs/bar/app/services/file_was_deleted.rb | ||
|
5 changes: 5 additions & 0 deletions
5
tests/fixtures/contains_stale_violations_no_file/packs/foo/app/services/foo.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module Foo | ||
def self.foo_you | ||
'foo you' | ||
end | ||
end |
2 changes: 2 additions & 0 deletions
2
tests/fixtures/contains_stale_violations_no_file/packs/foo/package.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
enforce_privacy: true | ||
|
23 changes: 23 additions & 0 deletions
23
tests/fixtures/contains_stale_violations_no_file/packwerk.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# See: Setting up the configuration file | ||
# https://github.com/Shopify/packwerk/blob/main/USAGE.md#setting-up-the-configuration-file | ||
|
||
# List of patterns for folder paths to include | ||
# include: | ||
# - "**/*.{rb,rake,erb}" | ||
|
||
# List of patterns for folder paths to exclude | ||
# exclude: | ||
# - "{bin,node_modules,script,tmp,vendor}/**/*" | ||
|
||
# Patterns to find package configuration files | ||
# package_paths: "**/" | ||
|
||
# List of custom associations, if any | ||
# custom_associations: | ||
# - "cache_belongs_to" | ||
|
||
# Whether or not you want the cache enabled (disabled by default) | ||
cache: false | ||
|
||
# Where you want the cache to be stored (default below) | ||
# cache_directory: 'tmp/cache/packwerk' |