Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refine Atmos Configuration Handling to Support Imports, Remote Imports, and Configuration Directories #808
Refine Atmos Configuration Handling to Support Imports, Remote Imports, and Configuration Directories #808
Changes from 1 commit
892cfeb
052673b
63ffce1
000e439
4493540
d1903c4
d9a3517
089a82f
c020d63
31c844c
d70f66f
512e02e
c22624f
750f4b5
8eeda00
a8d3528
d8a00ef
8050589
52b170d
f85d53e
73d9255
9913b54
cdb9fa1
7090975
3dfb2e0
cdafe20
b702884
8704668
989cd9e
a7414bb
3a24ee6
061ba9c
e57aacb
e6a3200
fa5f25e
86e2505
95cdf74
bc2c4bc
8e6998a
87d4b0f
31d71c1
e64d2eb
378897c
e8d8507
6e4bc4d
930fde6
94e99d6
85957a4
b75c251
a742412
30c82d2
0609a78
1c02902
792ff0a
33da5d0
885bd00
b933331
50cd50e
aafdf16
3bb33fa
a55f6f2
66c0a59
27d3acd
1d46232
9a27195
bce6c4d
f45cf0d
1d33e16
f9e44cd
086c8c6
bf02e59
eb443e3
8f1bad1
8aeb10d
a89ddb9
4c02adf
58d2baa
f284aa7
6662a10
aab3982
687a00d
e8c8c8c
adbc84c
224dbbe
2dd72cf
d90e2ed
cb72208
d6bc7d7
1e67a35
aa811fc
e575831
848b986
9b3c31b
be0d4d0
8727747
5438111
4f6fa94
df92b1d
f37d1b8
719109e
04d6e9f
44e7415
597e7db
5a4cf74
e0d3cb7
4dac65a
87b4826
fe0094f
7ce4f8f
e267fd4
58c5361
2088f36
4e12998
0f0f841
616328e
f3bf4e1
4a07688
c3a75e6
12a388b
e7b6143
1abd9e7
33eb064
93fca1a
4979f46
e2aa858
bbf9e97
b63015e
d41aa85
87160de
929f784
4b691f9
23b4305
5e0bbf7
d278ed5
f340882
7f1cd32
edbd513
72a2e07
6b03048
e01fde3
5105cb8
67c6df3
8516156
da24379
a4284f6
186b49a
bd15949
4e4c6e3
848d667
f7e1db4
ba84a12
5a07a83
7648313
f64ca12
16eb6de
c754426
0ee1363
bba19c4
61875bc
3694cfc
375a027
ca63a83
cb0a36f
81fdc5b
4ea3455
5177e3c
a6ea4c9
7eecb7f
4bc9e9c
9370fb6
67bdc56
454bb85
8345062
83051df
86c1034
52e4779
6e401a9
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function is
resolveAndValidatePath
and doesn't indicate any relationship to base path. Shouldn't thisbe more generic?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using globs makes sense, however, the logs are very polluted using this approach when the directories don't exist. Why don't we first check if the directory exists, before attempting the glob, so we don't have a lot of failed matches.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Futher more, we repeat this pattern 3 times by copying and pasting. Can we consolidate in a function.