You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7-1
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,12 @@ js_package_paths:
73
73
74
74
This defaults `**/`, which makes it look for `package.json` files across your application.
75
75
76
+
> [!NOTE]
77
+
> Javscript package ownership does not respect `unowned_globs`. If you wish to disable usage of this feature you can set `js_package_paths` to an empty list.
78
+
```yml
79
+
js_package_paths: []
80
+
```
81
+
76
82
### Custom Ownership
77
83
To enable custom ownership, you can inject your own custom classes into `code_ownership`.
78
84
To do this, first create a class that adheres to the `CodeOwnership::Mapper` and/or `CodeOwnership::Validator` interface.
@@ -155,7 +161,7 @@ unowned_globs:
155
161
- app/services/some_file2.rb
156
162
- frontend/javascripts/**/__generated__/**/*
157
163
```
158
-
You can call the validation function with the Ruby API
164
+
You can call the validation function with the Ruby API
0 commit comments