We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2b6b9 commit 1e1e380Copy full SHA for 1e1e380
CHANGELOG.md
@@ -15,6 +15,8 @@ covered in the changelog.
15
- Expand `.` in the path of directory mappings
16
### Changed
17
- Directory mappings now load dependencies
18
+### Deprecated
19
+- The flag `--config` was deprecated due to confusing behavior with directory-aware configuration
20
21
## [1.3.0] - 2022-02-01
22
### Added
cmd/root.go
@@ -44,6 +44,7 @@ func init() {
44
"Overrides the default config file to use.",
45
)
46
_ = rootCmd.MarkPersistentFlagFilename("config", "yml")
47
+ _ = rootCmd.PersistentFlags().MarkDeprecated("config", "since the introduction of directory-aware loading.")
48
}
49
50
// initConfig reads in config file and ENV variables if set.
0 commit comments