-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add support for Provider-defined functions (#200)
* Feat: add support for Provider-defined functions * update test * update test * fix tests * fix tests * add test and update versions * add test and update versions * add test and update versions * add test and update versions * add test and update versions * linter fixes
- Loading branch information
1 parent
2cae4e7
commit c131667
Showing
29 changed files
with
264 additions
and
85 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
linters: | ||
enable: | ||
- errname | ||
- errorlint | ||
- gocheckcompilerdirectives | ||
- gochecknoglobals | ||
- gochecknoinits | ||
- goconst | ||
- gocritic | ||
- misspell | ||
- nilerr | ||
- nilnil | ||
- nlreturn | ||
- perfsprint | ||
- prealloc | ||
- predeclared | ||
- reassign | ||
- sloglint | ||
- spancheck | ||
- testifylint | ||
- unparam | ||
- unused | ||
- usestdlibvars | ||
- wsl | ||
|
||
linters-settings: | ||
errorlint: | ||
asserts: false | ||
errcheck: | ||
exclude-functions: | ||
- (*github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema.ResourceData).Set | ||
goconst: | ||
ignore-tests: true |
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
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
Oops, something went wrong.