├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── documentation.yml │ ├── feature.yml │ └── maintenance.yml ├── dependabot.yml ├── labeler.yml ├── pull_request_template.md ├── release.yml └── workflows │ ├── ci.yaml │ ├── codeql.yaml │ ├── dotcom-acceptance-tests.yaml │ ├── ghes-acceptance-tests.yaml │ ├── immediate-response.yaml │ ├── labeler.yaml │ ├── release.yaml │ └── stale.yaml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .markdownlint.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GNUmakefile ├── LICENSE ├── README.md ├── RELEASE.md ├── SECURITY.md ├── examples ├── README.md ├── app_authentication │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── app_installation_repository │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── app_token │ ├── main.tf │ └── variables.tf ├── dev.tfrc ├── emu │ └── main.tf ├── enterprise_settings │ ├── README.md │ └── main.tf ├── hosted_runner │ └── main.tf ├── organization_security_manager │ ├── README.md │ ├── main.tf │ ├── output.tf │ ├── providers.tf │ └── variables.tf ├── release │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── repository_collaborator │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── repository_delete_branch_on_merge │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── repository_non_org_owner │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── repository_org_internal │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── repository_security_and_analysis │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── repository_team │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── repository_visibility │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf └── secret-drifting │ └── main.tf ├── github ├── apps.go ├── apps_test.go ├── config.go ├── config_test.go ├── data_source_github_actions_environment_public_key.go ├── data_source_github_actions_environment_public_key_test.go ├── data_source_github_actions_environment_secrets.go ├── data_source_github_actions_environment_secrets_test.go ├── data_source_github_actions_environment_variables.go ├── data_source_github_actions_environment_variables_test.go ├── data_source_github_actions_organization_oidc_subject_claim_customization_template.go ├── data_source_github_actions_organization_oidc_subject_claim_customization_template_test.go ├── data_source_github_actions_organization_public_key.go ├── data_source_github_actions_organization_public_key_test.go ├── data_source_github_actions_organization_registration_token.go ├── data_source_github_actions_organization_registration_token_test.go ├── data_source_github_actions_organization_secrets.go ├── data_source_github_actions_organization_secrets_test.go ├── data_source_github_actions_organization_variables.go ├── data_source_github_actions_organization_variables_test.go ├── data_source_github_actions_public_key.go ├── data_source_github_actions_public_key_test.go ├── data_source_github_actions_registration_token.go ├── data_source_github_actions_registration_token_test.go ├── data_source_github_actions_repository_oidc_subject_claim_customization_template.go ├── data_source_github_actions_repository_oidc_subject_claim_customization_template_test.go ├── data_source_github_actions_secrets.go ├── data_source_github_actions_secrets_test.go ├── data_source_github_actions_variables.go ├── data_source_github_actions_variables_test.go ├── data_source_github_app.go ├── data_source_github_app_token.go ├── data_source_github_app_token_test.go ├── data_source_github_branch.go ├── data_source_github_branch_protection_rules.go ├── data_source_github_branch_protection_rules_test.go ├── data_source_github_branch_test.go ├── data_source_github_codespaces_organization_public_key.go ├── data_source_github_codespaces_organization_public_key_test.go ├── data_source_github_codespaces_organization_secrets.go ├── data_source_github_codespaces_organization_secrets_test.go ├── data_source_github_codespaces_public_key.go ├── data_source_github_codespaces_public_key_test.go ├── data_source_github_codespaces_secrets.go ├── data_source_github_codespaces_secrets_test.go ├── data_source_github_codespaces_user_public_key.go ├── data_source_github_codespaces_user_public_key_test.go ├── data_source_github_codespaces_user_secrets.go ├── data_source_github_codespaces_user_secrets_test.go ├── data_source_github_collaborators.go ├── data_source_github_collaborators_test.go ├── data_source_github_dependabot_organization_public_key.go ├── data_source_github_dependabot_organization_public_key_test.go ├── data_source_github_dependabot_organization_secrets.go ├── data_source_github_dependabot_organization_secrets_test.go ├── data_source_github_dependabot_public_key.go ├── data_source_github_dependabot_public_key_test.go ├── data_source_github_dependabot_secrets.go ├── data_source_github_dependabot_secrets_test.go ├── data_source_github_enterprise.go ├── data_source_github_enterprise_test.go ├── data_source_github_external_groups.go ├── data_source_github_ip_ranges.go ├── data_source_github_ip_ranges_test.go ├── data_source_github_issue_labels.go ├── data_source_github_issue_labels_test.go ├── data_source_github_membership.go ├── data_source_github_membership_test.go ├── data_source_github_organization.go ├── data_source_github_organization_custom_properties.go ├── data_source_github_organization_custom_role.go ├── data_source_github_organization_custom_role_test.go ├── data_source_github_organization_external_identities.go ├── data_source_github_organization_external_identities_test.go ├── data_source_github_organization_ip_allow_list.go ├── data_source_github_organization_ip_allow_list_test.go ├── data_source_github_organization_repository_role.go ├── data_source_github_organization_repository_role_test.go ├── data_source_github_organization_repository_roles.go ├── data_source_github_organization_repository_roles_test.go ├── data_source_github_organization_role.go ├── data_source_github_organization_role_teams.go ├── data_source_github_organization_role_teams_test.go ├── data_source_github_organization_role_test.go ├── data_source_github_organization_role_users.go ├── data_source_github_organization_role_users_test.go ├── data_source_github_organization_roles.go ├── data_source_github_organization_roles_test.go ├── data_source_github_organization_security_managers.go ├── data_source_github_organization_security_managers_test.go ├── data_source_github_organization_team_sync_groups.go ├── data_source_github_organization_team_sync_groups_test.go ├── data_source_github_organization_teams.go ├── data_source_github_organization_teams_test.go ├── data_source_github_organization_test.go ├── data_source_github_organization_webhooks.go ├── data_source_github_organization_webhooks_test.go ├── data_source_github_ref.go ├── data_source_github_ref_test.go ├── data_source_github_release.go ├── data_source_github_release_test.go ├── data_source_github_repositories.go ├── data_source_github_repositories_test.go ├── data_source_github_repository.go ├── data_source_github_repository_autolink_references.go ├── data_source_github_repository_autolink_references_test.go ├── data_source_github_repository_branches.go ├── data_source_github_repository_branches_test.go ├── data_source_github_repository_custom_properties.go ├── data_source_github_repository_custom_properties_test.go ├── data_source_github_repository_deploy_keys.go ├── data_source_github_repository_deploy_keys_test.go ├── data_source_github_repository_deployment_branch_policies.go ├── data_source_github_repository_deployment_branch_policies_test.go ├── data_source_github_repository_environment_deployment_policies.go ├── data_source_github_repository_environment_deployment_policies_test.go ├── data_source_github_repository_environments.go ├── data_source_github_repository_environments_test.go ├── data_source_github_repository_file.go ├── data_source_github_repository_file_test.go ├── data_source_github_repository_milestone.go ├── data_source_github_repository_milestone_test.go ├── data_source_github_repository_pull_request.go ├── data_source_github_repository_pull_request_test.go ├── data_source_github_repository_pull_requests.go ├── data_source_github_repository_pull_requests_test.go ├── data_source_github_repository_teams.go ├── data_source_github_repository_teams_test.go ├── data_source_github_repository_test.go ├── data_source_github_repository_webhooks.go ├── data_source_github_repository_webhooks_test.go ├── data_source_github_rest_api.go ├── data_source_github_rest_api_test.go ├── data_source_github_ssh_keys.go ├── data_source_github_ssh_keys_test.go ├── data_source_github_team.go ├── data_source_github_team_repository_test.go ├── data_source_github_team_test.go ├── data_source_github_tree.go ├── data_source_github_tree_test.go ├── data_source_github_user.go ├── data_source_github_user_external_identity.go ├── data_source_github_user_external_identity_test.go ├── data_source_github_user_test.go ├── data_source_github_users.go ├── data_source_github_users_test.go ├── migrate_github_actions_organization_secret.go ├── migrate_github_actions_organization_secret_test.go ├── migrate_github_actions_secret.go ├── migrate_github_actions_secret_test.go ├── migrate_github_branch_protection.go ├── migrate_github_repository.go ├── migrate_github_repository_test.go ├── migrate_github_repository_webhook.go ├── migrate_github_repository_webhook_test.go ├── provider.go ├── provider_test.go ├── provider_utils.go ├── repository_utils.go ├── resource_github_actions_environment_secret.go ├── resource_github_actions_environment_secret_test.go ├── resource_github_actions_environment_variable.go ├── resource_github_actions_environment_variable_test.go ├── resource_github_actions_hosted_runner.go ├── resource_github_actions_hosted_runner_test.go ├── resource_github_actions_organization_oidc_subject_claim_customization_template.go ├── resource_github_actions_organization_oidc_subject_claim_customization_template_test.go ├── resource_github_actions_organization_permissions.go ├── resource_github_actions_organization_permissions_test.go ├── resource_github_actions_organization_secret.go ├── resource_github_actions_organization_secret_drift_test.go ├── resource_github_actions_organization_secret_repositories.go ├── resource_github_actions_organization_secret_repositories_test.go ├── resource_github_actions_organization_secret_repository.go ├── resource_github_actions_organization_secret_repository_test.go ├── resource_github_actions_organization_secret_test.go ├── resource_github_actions_organization_variable.go ├── resource_github_actions_organization_variable_test.go ├── resource_github_actions_repository_access_level.go ├── resource_github_actions_repository_access_level_test.go ├── resource_github_actions_repository_oidc_subject_claim_customization_template.go ├── resource_github_actions_repository_oidc_subject_claim_customization_template_test.go ├── resource_github_actions_repository_permissions.go ├── resource_github_actions_repository_permissions_test.go ├── resource_github_actions_runner_group.go ├── resource_github_actions_runner_group_test.go ├── resource_github_actions_secret.go ├── resource_github_actions_secret_test.go ├── resource_github_actions_secret_validation_test.go ├── resource_github_actions_variable.go ├── resource_github_actions_variable_test.go ├── resource_github_app_installation_repositories.go ├── resource_github_app_installation_repositories_test.go ├── resource_github_app_installation_repository.go ├── resource_github_app_installation_repository_test.go ├── resource_github_branch.go ├── resource_github_branch_default.go ├── resource_github_branch_default_test.go ├── resource_github_branch_protection.go ├── resource_github_branch_protection_test.go ├── resource_github_branch_protection_v3.go ├── resource_github_branch_protection_v3_test.go ├── resource_github_branch_protection_v3_utils.go ├── resource_github_branch_test.go ├── resource_github_branch_validation_test.go ├── resource_github_codespaces_organization_secret.go ├── resource_github_codespaces_organization_secret_repositories.go ├── resource_github_codespaces_organization_secret_repositories_test.go ├── resource_github_codespaces_organization_secret_test.go ├── resource_github_codespaces_secret.go ├── resource_github_codespaces_secret_test.go ├── resource_github_codespaces_user_secret.go ├── resource_github_codespaces_user_secret_test.go ├── resource_github_dependabot_organization_secret.go ├── resource_github_dependabot_organization_secret_repositories.go ├── resource_github_dependabot_organization_secret_repositories_test.go ├── resource_github_dependabot_organization_secret_test.go ├── resource_github_dependabot_secret.go ├── resource_github_dependabot_secret_test.go ├── resource_github_emu_group_mapping.go ├── resource_github_enterprise_actions_permissions.go ├── resource_github_enterprise_actions_permissions_test.go ├── resource_github_enterprise_actions_runner_group.go ├── resource_github_enterprise_actions_runner_group_test.go ├── resource_github_enterprise_actions_workflow_permissions.go ├── resource_github_enterprise_actions_workflow_permissions_test.go ├── resource_github_enterprise_organization.go ├── resource_github_enterprise_organization_test.go ├── resource_github_enterprise_security_analysis_settings.go ├── resource_github_enterprise_security_analysis_settings_test.go ├── resource_github_etag_acc_test.go ├── resource_github_etag_unit_test.go ├── resource_github_issue.go ├── resource_github_issue_label.go ├── resource_github_issue_label_test.go ├── resource_github_issue_labels.go ├── resource_github_issue_labels_test.go ├── resource_github_issue_test.go ├── resource_github_membership.go ├── resource_github_membership_test.go ├── resource_github_organization_custom_properties.go ├── resource_github_organization_custom_properties_test.go ├── resource_github_organization_custom_role.go ├── resource_github_organization_custom_role_test.go ├── resource_github_organization_project.go ├── resource_github_organization_project_test.go ├── resource_github_organization_repository_role.go ├── resource_github_organization_repository_role_test.go ├── resource_github_organization_role.go ├── resource_github_organization_role_team.go ├── resource_github_organization_role_team_assignment.go ├── resource_github_organization_role_team_assignment_test.go ├── resource_github_organization_role_team_test.go ├── resource_github_organization_role_test.go ├── resource_github_organization_role_user.go ├── resource_github_organization_role_user_test.go ├── resource_github_organization_ruleset.go ├── resource_github_organization_ruleset_test.go ├── resource_github_organization_security_manager.go ├── resource_github_organization_security_manager_test.go ├── resource_github_organization_settings.go ├── resource_github_organization_settings_test.go ├── resource_github_organization_webhook.go ├── resource_github_organization_webhook_test.go ├── resource_github_project_card.go ├── resource_github_project_card_test.go ├── resource_github_project_column.go ├── resource_github_project_column_test.go ├── resource_github_release.go ├── resource_github_release_test.go ├── resource_github_repository.go ├── resource_github_repository_autolink_reference.go ├── resource_github_repository_autolink_reference_test.go ├── resource_github_repository_automated_security_fixes.go ├── resource_github_repository_automated_security_fixes_test.go ├── resource_github_repository_collaborator.go ├── resource_github_repository_collaborator_test.go ├── resource_github_repository_collaborators.go ├── resource_github_repository_collaborators_test.go ├── resource_github_repository_custom_property.go ├── resource_github_repository_custom_property_test.go ├── resource_github_repository_deploy_key.go ├── resource_github_repository_deploy_key_test.go ├── resource_github_repository_deployment_branch_policy.go ├── resource_github_repository_deployment_branch_policy_test.go ├── resource_github_repository_environment.go ├── resource_github_repository_environment_deployment_policy.go ├── resource_github_repository_environment_deployment_policy_test.go ├── resource_github_repository_environment_test.go ├── resource_github_repository_file.go ├── resource_github_repository_file_test.go ├── resource_github_repository_milestone.go ├── resource_github_repository_milestone_test.go ├── resource_github_repository_project.go ├── resource_github_repository_project_test.go ├── resource_github_repository_pull_request.go ├── resource_github_repository_pull_request_test.go ├── resource_github_repository_ruleset.go ├── resource_github_repository_ruleset_test.go ├── resource_github_repository_test.go ├── resource_github_repository_topics.go ├── resource_github_repository_topics_test.go ├── resource_github_repository_webhook.go ├── resource_github_repository_webhook_test.go ├── resource_github_team.go ├── resource_github_team_members.go ├── resource_github_team_members_test.go ├── resource_github_team_membership.go ├── resource_github_team_membership_test.go ├── resource_github_team_repository.go ├── resource_github_team_repository_test.go ├── resource_github_team_settings.go ├── resource_github_team_settings_test.go ├── resource_github_team_sync_group_mapping.go ├── resource_github_team_sync_group_mapping_test.go ├── resource_github_team_test.go ├── resource_github_user_gpg_key.go ├── resource_github_user_gpg_key_test.go ├── resource_github_user_invitation_accepter.go ├── resource_github_user_invitation_accepter_test.go ├── resource_github_user_ssh_key.go ├── resource_github_user_ssh_key_test.go ├── resource_github_workflow_repository_permissions.go ├── resource_github_workflow_repository_permissions_test.go ├── resource_organization_block.go ├── resource_organization_block_test.go ├── respository_rules_utils.go ├── respository_rules_utils_test.go ├── schema_webhook_configuration.go ├── sweeper_test.go ├── test-fixtures │ ├── README.md │ ├── cert.pem │ ├── domain.csr │ ├── github-app-key.pem │ ├── github-app-key.pub │ ├── gpg-pubkey.asc │ ├── id_rsa.pub │ └── key.pem ├── transport.go ├── transport_test.go ├── util.go ├── util_labels.go ├── util_permissions.go ├── util_test.go ├── util_v4.go ├── util_v4_branch_protection.go ├── util_v4_consts.go ├── util_v4_repository.go ├── util_v4_repository_test.go └── util_v4_teams.go ├── go.mod ├── go.sum ├── main.go ├── scripts └── gofmtcheck.sh ├── terraform-registry-manifest.json ├── tools.go ├── vendor ├── 4d63.com │ ├── gocheckcompilerdirectives │ │ ├── LICENSE │ │ └── checkcompilerdirectives │ │ │ └── checkcompilerdirectives.go │ └── gochecknoglobals │ │ ├── LICENSE │ │ └── checknoglobals │ │ └── check_no_globals.go ├── codeberg.org │ └── chavacava │ │ └── garif │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constructors.go │ │ ├── decorators.go │ │ ├── doc.go │ │ ├── enums.go │ │ ├── io.go │ │ └── models.go ├── dev.gaijin.team │ └── go │ │ ├── exhaustruct │ │ └── v4 │ │ │ ├── LICENSE │ │ │ ├── analyzer │ │ │ ├── analyzer.go │ │ │ └── config.go │ │ │ └── internal │ │ │ ├── comment │ │ │ ├── cache.go │ │ │ └── directive.go │ │ │ ├── pattern │ │ │ └── list.go │ │ │ └── structure │ │ │ ├── fields-cache.go │ │ │ └── fields.go │ │ └── golib │ │ ├── LICENSE │ │ ├── e │ │ ├── doc.go │ │ ├── err.go │ │ └── log.go │ │ └── fields │ │ ├── dict.go │ │ ├── doc.go │ │ ├── field.go │ │ └── list.go ├── github.com │ ├── 4meepo │ │ └── tagalign │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── options.go │ │ │ └── tagalign.go │ ├── Abirdcfly │ │ └── dupword │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dupword.go │ │ │ └── version.go │ ├── AdminBenni │ │ └── iota-mixing │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── analyzer │ │ │ ├── analyzer.go │ │ │ └── flags │ │ │ └── flags.go │ ├── AlwxSin │ │ └── noinlineerr │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── noinlineerr.go │ ├── Antonboom │ │ ├── errname │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ │ └── analyzer │ │ │ │ ├── analyzer.go │ │ │ │ └── facts.go │ │ ├── nilnil │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ │ └── analyzer │ │ │ │ ├── analyzer.go │ │ │ │ ├── config.go │ │ │ │ └── func_type_stack.go │ │ └── testifylint │ │ │ ├── LICENSE │ │ │ ├── analyzer │ │ │ ├── analyzer.go │ │ │ └── checkers_factory.go │ │ │ └── internal │ │ │ ├── analysisutil │ │ │ ├── doc.go │ │ │ ├── encoded.go │ │ │ ├── file.go │ │ │ ├── format.go │ │ │ ├── object.go │ │ │ └── pkg.go │ │ │ ├── checkers │ │ │ ├── blank_import.go │ │ │ ├── bool_compare.go │ │ │ ├── call_meta.go │ │ │ ├── checker.go │ │ │ ├── checkers_registry.go │ │ │ ├── compares.go │ │ │ ├── contains.go │ │ │ ├── empty.go │ │ │ ├── encoded_compare.go │ │ │ ├── equal_values.go │ │ │ ├── error_is_as.go │ │ │ ├── error_nil.go │ │ │ ├── expected_actual.go │ │ │ ├── float_compare.go │ │ │ ├── formatter.go │ │ │ ├── go_require.go │ │ │ ├── helpers.go │ │ │ ├── helpers_basic_type.go │ │ │ ├── helpers_bool.go │ │ │ ├── helpers_comparison.go │ │ │ ├── helpers_context.go │ │ │ ├── helpers_diagnostic.go │ │ │ ├── helpers_encoded.go │ │ │ ├── helpers_error.go │ │ │ ├── helpers_format.go │ │ │ ├── helpers_http.go │ │ │ ├── helpers_interface.go │ │ │ ├── helpers_len.go │ │ │ ├── helpers_naming.go │ │ │ ├── helpers_nil.go │ │ │ ├── helpers_pkg_func.go │ │ │ ├── helpers_suite.go │ │ │ ├── helpers_testing.go │ │ │ ├── len.go │ │ │ ├── negative_positive.go │ │ │ ├── nil_compare.go │ │ │ ├── printf │ │ │ │ ├── LICENSE │ │ │ │ ├── doc.go │ │ │ │ └── printf.go │ │ │ ├── regexp.go │ │ │ ├── require_error.go │ │ │ ├── suite_broken_parallel.go │ │ │ ├── suite_dont_use_pkg.go │ │ │ ├── suite_extra_assert_call.go │ │ │ ├── suite_method_signature.go │ │ │ ├── suite_subtest_run.go │ │ │ ├── suite_thelper.go │ │ │ └── useless_assert.go │ │ │ ├── config │ │ │ ├── config.go │ │ │ └── flag_value_types.go │ │ │ └── testify │ │ │ └── const.go │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── internal │ │ │ └── tz.go │ │ │ ├── lex.go │ │ │ ├── meta.go │ │ │ ├── parse.go │ │ │ ├── type_fields.go │ │ │ └── type_toml.go │ ├── Djarvur │ │ └── go-err113 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.adoc │ │ │ ├── comparison.go │ │ │ ├── definition.go │ │ │ └── err113.go │ ├── Masterminds │ │ └── semver │ │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── collection.go │ │ │ ├── constraints.go │ │ │ ├── doc.go │ │ │ └── version.go │ ├── MirrexOne │ │ └── unqueryvet │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── config.go │ │ │ ├── internal │ │ │ └── analyzer │ │ │ │ └── analyzer.go │ │ │ └── pkg │ │ │ └── config │ │ │ └── config.go │ ├── OpenPeeDeeP │ │ └── depguard │ │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── depguard.go │ │ │ ├── internal │ │ │ └── utils │ │ │ │ ├── errors.go │ │ │ │ └── variables.go │ │ │ └── settings.go │ ├── ProtonMail │ │ └── go-crypto │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── bitcurves │ │ │ └── bitcurve.go │ │ │ ├── brainpool │ │ │ ├── brainpool.go │ │ │ └── rcurve.go │ │ │ ├── eax │ │ │ ├── eax.go │ │ │ ├── eax_test_vectors.go │ │ │ └── random_vectors.go │ │ │ ├── internal │ │ │ └── byteutil │ │ │ │ └── byteutil.go │ │ │ ├── ocb │ │ │ ├── ocb.go │ │ │ ├── random_vectors.go │ │ │ ├── rfc7253_test_vectors_suite_a.go │ │ │ └── rfc7253_test_vectors_suite_b.go │ │ │ └── openpgp │ │ │ ├── aes │ │ │ └── keywrap │ │ │ │ └── keywrap.go │ │ │ ├── armor │ │ │ ├── armor.go │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── ecdh │ │ │ └── ecdh.go │ │ │ ├── ecdsa │ │ │ └── ecdsa.go │ │ │ ├── ed25519 │ │ │ └── ed25519.go │ │ │ ├── ed448 │ │ │ └── ed448.go │ │ │ ├── eddsa │ │ │ └── eddsa.go │ │ │ ├── elgamal │ │ │ └── elgamal.go │ │ │ ├── errors │ │ │ └── errors.go │ │ │ ├── hash.go │ │ │ ├── internal │ │ │ ├── algorithm │ │ │ │ ├── aead.go │ │ │ │ ├── cipher.go │ │ │ │ └── hash.go │ │ │ ├── ecc │ │ │ │ ├── curve25519.go │ │ │ │ ├── curve_info.go │ │ │ │ ├── curves.go │ │ │ │ ├── ed25519.go │ │ │ │ ├── ed448.go │ │ │ │ ├── generic.go │ │ │ │ └── x448.go │ │ │ └── encoding │ │ │ │ ├── encoding.go │ │ │ │ ├── mpi.go │ │ │ │ └── oid.go │ │ │ ├── key_generation.go │ │ │ ├── keys.go │ │ │ ├── keys_test_data.go │ │ │ ├── packet │ │ │ ├── aead_config.go │ │ │ ├── aead_crypter.go │ │ │ ├── aead_encrypted.go │ │ │ ├── compressed.go │ │ │ ├── config.go │ │ │ ├── config_v5.go │ │ │ ├── encrypted_key.go │ │ │ ├── literal.go │ │ │ ├── marker.go │ │ │ ├── notation.go │ │ │ ├── ocfb.go │ │ │ ├── one_pass_signature.go │ │ │ ├── opaque.go │ │ │ ├── packet.go │ │ │ ├── packet_sequence.go │ │ │ ├── packet_unsupported.go │ │ │ ├── padding.go │ │ │ ├── private_key.go │ │ │ ├── private_key_test_data.go │ │ │ ├── public_key.go │ │ │ ├── public_key_test_data.go │ │ │ ├── reader.go │ │ │ ├── recipient.go │ │ │ ├── signature.go │ │ │ ├── symmetric_key_encrypted.go │ │ │ ├── symmetrically_encrypted.go │ │ │ ├── symmetrically_encrypted_aead.go │ │ │ ├── symmetrically_encrypted_mdc.go │ │ │ ├── userattribute.go │ │ │ └── userid.go │ │ │ ├── read.go │ │ │ ├── read_write_test_data.go │ │ │ ├── s2k │ │ │ ├── s2k.go │ │ │ ├── s2k_cache.go │ │ │ └── s2k_config.go │ │ │ ├── write.go │ │ │ ├── x25519 │ │ │ └── x25519.go │ │ │ └── x448 │ │ │ └── x448.go │ ├── agext │ │ └── levenshtein │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── DCO │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── levenshtein.go │ │ │ ├── params.go │ │ │ └── test.sh │ ├── alecthomas │ │ ├── chroma │ │ │ └── v2 │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── .goreleaser.yml │ │ │ │ ├── Bitfile │ │ │ │ ├── COPYING │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── biome.json │ │ │ │ ├── chroma.jpg │ │ │ │ ├── coalesce.go │ │ │ │ ├── colour.go │ │ │ │ ├── delegate.go │ │ │ │ ├── doc.go │ │ │ │ ├── emitters.go │ │ │ │ ├── formatter.go │ │ │ │ ├── formatters │ │ │ │ ├── api.go │ │ │ │ ├── html │ │ │ │ │ └── html.go │ │ │ │ ├── json.go │ │ │ │ ├── svg │ │ │ │ │ ├── font_liberation_mono.go │ │ │ │ │ └── svg.go │ │ │ │ ├── tokens.go │ │ │ │ ├── tty_indexed.go │ │ │ │ └── tty_truecolour.go │ │ │ │ ├── iterator.go │ │ │ │ ├── lexer.go │ │ │ │ ├── lexers │ │ │ │ ├── README.md │ │ │ │ ├── caddyfile.go │ │ │ │ ├── cl.go │ │ │ │ ├── dns.go │ │ │ │ ├── emacs.go │ │ │ │ ├── embedded │ │ │ │ │ ├── abap.xml │ │ │ │ │ ├── abnf.xml │ │ │ │ │ ├── actionscript.xml │ │ │ │ │ ├── actionscript_3.xml │ │ │ │ │ ├── ada.xml │ │ │ │ │ ├── agda.xml │ │ │ │ │ ├── al.xml │ │ │ │ │ ├── alloy.xml │ │ │ │ │ ├── angular2.xml │ │ │ │ │ ├── antlr.xml │ │ │ │ │ ├── apacheconf.xml │ │ │ │ │ ├── apl.xml │ │ │ │ │ ├── applescript.xml │ │ │ │ │ ├── arangodb_aql.xml │ │ │ │ │ ├── arduino.xml │ │ │ │ │ ├── armasm.xml │ │ │ │ │ ├── atl.xml │ │ │ │ │ ├── autohotkey.xml │ │ │ │ │ ├── autoit.xml │ │ │ │ │ ├── awk.xml │ │ │ │ │ ├── ballerina.xml │ │ │ │ │ ├── bash.xml │ │ │ │ │ ├── bash_session.xml │ │ │ │ │ ├── batchfile.xml │ │ │ │ │ ├── beef.xml │ │ │ │ │ ├── bibtex.xml │ │ │ │ │ ├── bicep.xml │ │ │ │ │ ├── blitzbasic.xml │ │ │ │ │ ├── bnf.xml │ │ │ │ │ ├── bqn.xml │ │ │ │ │ ├── brainfuck.xml │ │ │ │ │ ├── c#.xml │ │ │ │ │ ├── c++.xml │ │ │ │ │ ├── c.xml │ │ │ │ │ ├── cap_n_proto.xml │ │ │ │ │ ├── cassandra_cql.xml │ │ │ │ │ ├── ceylon.xml │ │ │ │ │ ├── cfengine3.xml │ │ │ │ │ ├── cfstatement.xml │ │ │ │ │ ├── chaiscript.xml │ │ │ │ │ ├── chapel.xml │ │ │ │ │ ├── cheetah.xml │ │ │ │ │ ├── clojure.xml │ │ │ │ │ ├── cmake.xml │ │ │ │ │ ├── cobol.xml │ │ │ │ │ ├── coffeescript.xml │ │ │ │ │ ├── common_lisp.xml │ │ │ │ │ ├── coq.xml │ │ │ │ │ ├── core.xml │ │ │ │ │ ├── crystal.xml │ │ │ │ │ ├── css.xml │ │ │ │ │ ├── csv.xml │ │ │ │ │ ├── cue.xml │ │ │ │ │ ├── cython.xml │ │ │ │ │ ├── d.xml │ │ │ │ │ ├── dart.xml │ │ │ │ │ ├── dax.xml │ │ │ │ │ ├── desktop_entry.xml │ │ │ │ │ ├── diff.xml │ │ │ │ │ ├── django_jinja.xml │ │ │ │ │ ├── dns.xml │ │ │ │ │ ├── docker.xml │ │ │ │ │ ├── dtd.xml │ │ │ │ │ ├── dylan.xml │ │ │ │ │ ├── ebnf.xml │ │ │ │ │ ├── elixir.xml │ │ │ │ │ ├── elm.xml │ │ │ │ │ ├── emacslisp.xml │ │ │ │ │ ├── erlang.xml │ │ │ │ │ ├── factor.xml │ │ │ │ │ ├── fennel.xml │ │ │ │ │ ├── fish.xml │ │ │ │ │ ├── forth.xml │ │ │ │ │ ├── fortran.xml │ │ │ │ │ ├── fortranfixed.xml │ │ │ │ │ ├── fsharp.xml │ │ │ │ │ ├── gas.xml │ │ │ │ │ ├── gdscript.xml │ │ │ │ │ ├── gdscript3.xml │ │ │ │ │ ├── gherkin.xml │ │ │ │ │ ├── gleam.xml │ │ │ │ │ ├── glsl.xml │ │ │ │ │ ├── gnuplot.xml │ │ │ │ │ ├── go_template.xml │ │ │ │ │ ├── graphql.xml │ │ │ │ │ ├── groff.xml │ │ │ │ │ ├── groovy.xml │ │ │ │ │ ├── handlebars.xml │ │ │ │ │ ├── hare.xml │ │ │ │ │ ├── haskell.xml │ │ │ │ │ ├── hcl.xml │ │ │ │ │ ├── hexdump.xml │ │ │ │ │ ├── hlb.xml │ │ │ │ │ ├── hlsl.xml │ │ │ │ │ ├── holyc.xml │ │ │ │ │ ├── html.xml │ │ │ │ │ ├── hy.xml │ │ │ │ │ ├── idris.xml │ │ │ │ │ ├── igor.xml │ │ │ │ │ ├── ini.xml │ │ │ │ │ ├── io.xml │ │ │ │ │ ├── iscdhcpd.xml │ │ │ │ │ ├── j.xml │ │ │ │ │ ├── janet.xml │ │ │ │ │ ├── java.xml │ │ │ │ │ ├── javascript.xml │ │ │ │ │ ├── json.xml │ │ │ │ │ ├── jsonata.xml │ │ │ │ │ ├── jsonnet.xml │ │ │ │ │ ├── julia.xml │ │ │ │ │ ├── jungle.xml │ │ │ │ │ ├── kotlin.xml │ │ │ │ │ ├── lean.xml │ │ │ │ │ ├── lighttpd_configuration_file.xml │ │ │ │ │ ├── llvm.xml │ │ │ │ │ ├── lox.xml │ │ │ │ │ ├── lua.xml │ │ │ │ │ ├── makefile.xml │ │ │ │ │ ├── mako.xml │ │ │ │ │ ├── mason.xml │ │ │ │ │ ├── materialize_sql_dialect.xml │ │ │ │ │ ├── mathematica.xml │ │ │ │ │ ├── matlab.xml │ │ │ │ │ ├── mcfunction.xml │ │ │ │ │ ├── meson.xml │ │ │ │ │ ├── metal.xml │ │ │ │ │ ├── minizinc.xml │ │ │ │ │ ├── mlir.xml │ │ │ │ │ ├── modula-2.xml │ │ │ │ │ ├── mojo.xml │ │ │ │ │ ├── monkeyc.xml │ │ │ │ │ ├── moonscript.xml │ │ │ │ │ ├── morrowindscript.xml │ │ │ │ │ ├── myghty.xml │ │ │ │ │ ├── mysql.xml │ │ │ │ │ ├── nasm.xml │ │ │ │ │ ├── natural.xml │ │ │ │ │ ├── ndisasm.xml │ │ │ │ │ ├── newspeak.xml │ │ │ │ │ ├── nginx_configuration_file.xml │ │ │ │ │ ├── nim.xml │ │ │ │ │ ├── nix.xml │ │ │ │ │ ├── nsis.xml │ │ │ │ │ ├── nu.xml │ │ │ │ │ ├── objective-c.xml │ │ │ │ │ ├── objectpascal.xml │ │ │ │ │ ├── ocaml.xml │ │ │ │ │ ├── octave.xml │ │ │ │ │ ├── odin.xml │ │ │ │ │ ├── onesenterprise.xml │ │ │ │ │ ├── openedge_abl.xml │ │ │ │ │ ├── openscad.xml │ │ │ │ │ ├── org_mode.xml │ │ │ │ │ ├── pacmanconf.xml │ │ │ │ │ ├── perl.xml │ │ │ │ │ ├── php.xml │ │ │ │ │ ├── pig.xml │ │ │ │ │ ├── pkgconfig.xml │ │ │ │ │ ├── pl_pgsql.xml │ │ │ │ │ ├── plaintext.xml │ │ │ │ │ ├── plutus_core.xml │ │ │ │ │ ├── pony.xml │ │ │ │ │ ├── postgresql_sql_dialect.xml │ │ │ │ │ ├── postscript.xml │ │ │ │ │ ├── povray.xml │ │ │ │ │ ├── powerquery.xml │ │ │ │ │ ├── powershell.xml │ │ │ │ │ ├── prolog.xml │ │ │ │ │ ├── promela.xml │ │ │ │ │ ├── promql.xml │ │ │ │ │ ├── properties.xml │ │ │ │ │ ├── protocol_buffer.xml │ │ │ │ │ ├── prql.xml │ │ │ │ │ ├── psl.xml │ │ │ │ │ ├── puppet.xml │ │ │ │ │ ├── python.xml │ │ │ │ │ ├── python_2.xml │ │ │ │ │ ├── qbasic.xml │ │ │ │ │ ├── qml.xml │ │ │ │ │ ├── r.xml │ │ │ │ │ ├── racket.xml │ │ │ │ │ ├── ragel.xml │ │ │ │ │ ├── react.xml │ │ │ │ │ ├── reasonml.xml │ │ │ │ │ ├── reg.xml │ │ │ │ │ ├── rego.xml │ │ │ │ │ ├── rexx.xml │ │ │ │ │ ├── rpgle.xml │ │ │ │ │ ├── rpm_spec.xml │ │ │ │ │ ├── ruby.xml │ │ │ │ │ ├── rust.xml │ │ │ │ │ ├── sas.xml │ │ │ │ │ ├── sass.xml │ │ │ │ │ ├── scala.xml │ │ │ │ │ ├── scheme.xml │ │ │ │ │ ├── scilab.xml │ │ │ │ │ ├── scss.xml │ │ │ │ │ ├── sed.xml │ │ │ │ │ ├── sieve.xml │ │ │ │ │ ├── smali.xml │ │ │ │ │ ├── smalltalk.xml │ │ │ │ │ ├── smarty.xml │ │ │ │ │ ├── snbt.xml │ │ │ │ │ ├── snobol.xml │ │ │ │ │ ├── solidity.xml │ │ │ │ │ ├── sourcepawn.xml │ │ │ │ │ ├── sparql.xml │ │ │ │ │ ├── sql.xml │ │ │ │ │ ├── squidconf.xml │ │ │ │ │ ├── standard_ml.xml │ │ │ │ │ ├── stas.xml │ │ │ │ │ ├── stylus.xml │ │ │ │ │ ├── swift.xml │ │ │ │ │ ├── systemd.xml │ │ │ │ │ ├── systemverilog.xml │ │ │ │ │ ├── tablegen.xml │ │ │ │ │ ├── tal.xml │ │ │ │ │ ├── tasm.xml │ │ │ │ │ ├── tcl.xml │ │ │ │ │ ├── tcsh.xml │ │ │ │ │ ├── termcap.xml │ │ │ │ │ ├── terminfo.xml │ │ │ │ │ ├── terraform.xml │ │ │ │ │ ├── tex.xml │ │ │ │ │ ├── thrift.xml │ │ │ │ │ ├── toml.xml │ │ │ │ │ ├── tradingview.xml │ │ │ │ │ ├── transact-sql.xml │ │ │ │ │ ├── turing.xml │ │ │ │ │ ├── turtle.xml │ │ │ │ │ ├── twig.xml │ │ │ │ │ ├── typescript.xml │ │ │ │ │ ├── typoscript.xml │ │ │ │ │ ├── typoscriptcssdata.xml │ │ │ │ │ ├── typoscripthtmldata.xml │ │ │ │ │ ├── typst.xml │ │ │ │ │ ├── ucode.xml │ │ │ │ │ ├── v.xml │ │ │ │ │ ├── v_shell.xml │ │ │ │ │ ├── vala.xml │ │ │ │ │ ├── vb_net.xml │ │ │ │ │ ├── verilog.xml │ │ │ │ │ ├── vhdl.xml │ │ │ │ │ ├── vhs.xml │ │ │ │ │ ├── viml.xml │ │ │ │ │ ├── vue.xml │ │ │ │ │ ├── wdte.xml │ │ │ │ │ ├── webgpu_shading_language.xml │ │ │ │ │ ├── webvtt.xml │ │ │ │ │ ├── whiley.xml │ │ │ │ │ ├── xml.xml │ │ │ │ │ ├── xorg.xml │ │ │ │ │ ├── yaml.xml │ │ │ │ │ ├── yang.xml │ │ │ │ │ ├── z80_assembly.xml │ │ │ │ │ ├── zed.xml │ │ │ │ │ └── zig.xml │ │ │ │ ├── gemtext.go │ │ │ │ ├── genshi.go │ │ │ │ ├── go.go │ │ │ │ ├── haxe.go │ │ │ │ ├── html.go │ │ │ │ ├── http.go │ │ │ │ ├── lexers.go │ │ │ │ ├── markdown.go │ │ │ │ ├── mysql.go │ │ │ │ ├── php.go │ │ │ │ ├── raku.go │ │ │ │ ├── rst.go │ │ │ │ ├── svelte.go │ │ │ │ ├── typoscript.go │ │ │ │ └── zed.go │ │ │ │ ├── mutators.go │ │ │ │ ├── pygments-lexers.txt │ │ │ │ ├── quick │ │ │ │ └── quick.go │ │ │ │ ├── regexp.go │ │ │ │ ├── registry.go │ │ │ │ ├── remap.go │ │ │ │ ├── renovate.json5 │ │ │ │ ├── serialise.go │ │ │ │ ├── style.go │ │ │ │ ├── styles │ │ │ │ ├── abap.xml │ │ │ │ ├── algol.xml │ │ │ │ ├── algol_nu.xml │ │ │ │ ├── api.go │ │ │ │ ├── arduino.xml │ │ │ │ ├── autumn.xml │ │ │ │ ├── average.xml │ │ │ │ ├── base16-snazzy.xml │ │ │ │ ├── borland.xml │ │ │ │ ├── bw.xml │ │ │ │ ├── catppuccin-frappe.xml │ │ │ │ ├── catppuccin-latte.xml │ │ │ │ ├── catppuccin-macchiato.xml │ │ │ │ ├── catppuccin-mocha.xml │ │ │ │ ├── colorful.xml │ │ │ │ ├── compat.go │ │ │ │ ├── doom-one.xml │ │ │ │ ├── doom-one2.xml │ │ │ │ ├── dracula.xml │ │ │ │ ├── emacs.xml │ │ │ │ ├── evergarden.xml │ │ │ │ ├── friendly.xml │ │ │ │ ├── fruity.xml │ │ │ │ ├── github-dark.xml │ │ │ │ ├── github.xml │ │ │ │ ├── gruvbox-light.xml │ │ │ │ ├── gruvbox.xml │ │ │ │ ├── hr_high_contrast.xml │ │ │ │ ├── hrdark.xml │ │ │ │ ├── igor.xml │ │ │ │ ├── lovelace.xml │ │ │ │ ├── manni.xml │ │ │ │ ├── modus-operandi.xml │ │ │ │ ├── modus-vivendi.xml │ │ │ │ ├── monokai.xml │ │ │ │ ├── monokailight.xml │ │ │ │ ├── murphy.xml │ │ │ │ ├── native.xml │ │ │ │ ├── nord.xml │ │ │ │ ├── nordic.xml │ │ │ │ ├── onedark.xml │ │ │ │ ├── onesenterprise.xml │ │ │ │ ├── paraiso-dark.xml │ │ │ │ ├── paraiso-light.xml │ │ │ │ ├── pastie.xml │ │ │ │ ├── perldoc.xml │ │ │ │ ├── pygments.xml │ │ │ │ ├── rainbow_dash.xml │ │ │ │ ├── rose-pine-dawn.xml │ │ │ │ ├── rose-pine-moon.xml │ │ │ │ ├── rose-pine.xml │ │ │ │ ├── rpgle.xml │ │ │ │ ├── rrt.xml │ │ │ │ ├── solarized-dark.xml │ │ │ │ ├── solarized-dark256.xml │ │ │ │ ├── solarized-light.xml │ │ │ │ ├── swapoff.xml │ │ │ │ ├── tango.xml │ │ │ │ ├── tokyonight-day.xml │ │ │ │ ├── tokyonight-moon.xml │ │ │ │ ├── tokyonight-night.xml │ │ │ │ ├── tokyonight-storm.xml │ │ │ │ ├── trac.xml │ │ │ │ ├── vim.xml │ │ │ │ ├── vs.xml │ │ │ │ ├── vulcan.xml │ │ │ │ ├── witchhazel.xml │ │ │ │ ├── xcode-dark.xml │ │ │ │ └── xcode.xml │ │ │ │ ├── table.py │ │ │ │ ├── tokentype_enumer.go │ │ │ │ └── types.go │ │ └── go-check-sumtype │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── COPYING │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── UNLICENSE │ │ │ ├── check.go │ │ │ ├── config.go │ │ │ ├── decl.go │ │ │ ├── def.go │ │ │ ├── doc.go │ │ │ ├── renovate.json5 │ │ │ └── run.go │ ├── alexkohler │ │ ├── nakedret │ │ │ └── v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── import.go │ │ │ │ └── nakedret.go │ │ └── prealloc │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── prealloc.go │ ├── alfatraining │ │ └── structtag │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── tags.go │ ├── alingse │ │ ├── asasalint │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── asasalint.go │ │ └── nilnesserr │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── internal │ │ │ └── typeparams │ │ │ │ ├── coretype.go │ │ │ │ ├── normalize.go │ │ │ │ ├── termlist.go │ │ │ │ └── typeterm.go │ │ │ ├── linter.go │ │ │ ├── nilerr.go │ │ │ └── nilness.go │ ├── apparentlymart │ │ └── go-textseg │ │ │ └── v15 │ │ │ ├── LICENSE │ │ │ └── textseg │ │ │ ├── all_tokens.go │ │ │ ├── emoji_table.rl │ │ │ ├── generate.go │ │ │ ├── grapheme_clusters.go │ │ │ ├── grapheme_clusters.rl │ │ │ ├── grapheme_clusters_table.rl │ │ │ ├── tables.go │ │ │ ├── unicode2ragel.rb │ │ │ └── utf8_seqs.go │ ├── ashanbrown │ │ ├── forbidigo │ │ │ └── v2 │ │ │ │ ├── LICENSE │ │ │ │ └── forbidigo │ │ │ │ ├── config_options.go │ │ │ │ ├── forbidigo.go │ │ │ │ └── patterns.go │ │ └── makezero │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ └── makezero │ │ │ └── makezero.go │ ├── aymanbagabas │ │ └── go-osc52 │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── osc52.go │ ├── beorn7 │ │ └── perks │ │ │ ├── LICENSE │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── bkielbasa │ │ └── cyclop │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── analyzer │ │ │ └── analyzer.go │ ├── blizzy78 │ │ └── varnamelen │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── flags.go │ │ │ ├── typeparam.go │ │ │ ├── typeparam_go1.16.go │ │ │ ├── varnamelen.code-workspace │ │ │ └── varnamelen.go │ ├── bombsimon │ │ └── wsl │ │ │ ├── v4 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ └── wsl.go │ │ │ └── v5 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHECKS.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── config.go │ │ │ ├── cursor.go │ │ │ └── wsl.go │ ├── breml │ │ ├── bidichk │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ │ └── bidichk │ │ │ │ ├── bidichk.go │ │ │ │ └── version.go │ │ └── errchkjson │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errchkjson.go │ │ │ ├── noexported_error.go │ │ │ ├── unsupported_error.go │ │ │ └── version.go │ ├── butuzov │ │ ├── ireturn │ │ │ ├── LICENSE │ │ │ └── analyzer │ │ │ │ ├── analyzer.go │ │ │ │ ├── disallow.go │ │ │ │ ├── internal │ │ │ │ ├── config │ │ │ │ │ ├── allow.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── new.go │ │ │ │ │ └── reject.go │ │ │ │ └── types │ │ │ │ │ ├── iface.go │ │ │ │ │ ├── names.go │ │ │ │ │ └── types.go │ │ │ │ └── std.go │ │ └── mirror │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yaml │ │ │ ├── LICENSE │ │ │ ├── MIRROR_FUNCS.md │ │ │ ├── Makefile │ │ │ ├── Taskfile.yml │ │ │ ├── analyzer.go │ │ │ ├── checkers_bufio.go │ │ │ ├── checkers_bytes.go │ │ │ ├── checkers_httptest.go │ │ │ ├── checkers_maphash.go │ │ │ ├── checkers_os.go │ │ │ ├── checkers_regexp.go │ │ │ ├── checkers_strings.go │ │ │ ├── checkers_utf8.go │ │ │ ├── internal │ │ │ └── checker │ │ │ │ ├── checker.go │ │ │ │ ├── imports.go │ │ │ │ └── violation.go │ │ │ └── readme.md │ ├── catenacyber │ │ └── perfsprint │ │ │ ├── LICENSE │ │ │ └── analyzer │ │ │ ├── analyzer.go │ │ │ └── diagnostic.go │ ├── ccojocar │ │ └── zxcvbn-go │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── adjacency │ │ │ └── adjcmartix.go │ │ │ ├── data │ │ │ └── bindata.go │ │ │ ├── entropy │ │ │ └── entropyCalculator.go │ │ │ ├── frequency │ │ │ └── frequency.go │ │ │ ├── match │ │ │ └── match.go │ │ │ ├── matching │ │ │ ├── dateMatchers.go │ │ │ ├── dictionaryMatch.go │ │ │ ├── leet.go │ │ │ ├── matching.go │ │ │ ├── repeatMatch.go │ │ │ ├── sequenceMatch.go │ │ │ └── spatialMatch.go │ │ │ ├── renovate.json │ │ │ ├── scoring │ │ │ └── scoring.go │ │ │ ├── utils │ │ │ └── math │ │ │ │ └── mathutils.go │ │ │ └── zxcvbn.go │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── testall.sh │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ ├── xxhash_safe.go │ │ │ └── xxhash_unsafe.go │ ├── charithe │ │ └── durationcheck │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── durationcheck.go │ ├── charmbracelet │ │ ├── colorprofile │ │ │ ├── .golangci-soft.yml │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── env.go │ │ │ ├── env_other.go │ │ │ ├── env_windows.go │ │ │ ├── profile.go │ │ │ └── writer.go │ │ ├── lipgloss │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Taskfile.yaml │ │ │ ├── align.go │ │ │ ├── ansi_unix.go │ │ │ ├── ansi_windows.go │ │ │ ├── borders.go │ │ │ ├── color.go │ │ │ ├── get.go │ │ │ ├── join.go │ │ │ ├── position.go │ │ │ ├── ranges.go │ │ │ ├── renderer.go │ │ │ ├── runes.go │ │ │ ├── set.go │ │ │ ├── size.go │ │ │ ├── style.go │ │ │ ├── unset.go │ │ │ └── whitespace.go │ │ └── x │ │ │ ├── ansi │ │ │ ├── LICENSE │ │ │ ├── ansi.go │ │ │ ├── ascii.go │ │ │ ├── background.go │ │ │ ├── c0.go │ │ │ ├── c1.go │ │ │ ├── charset.go │ │ │ ├── clipboard.go │ │ │ ├── color.go │ │ │ ├── ctrl.go │ │ │ ├── cursor.go │ │ │ ├── cwd.go │ │ │ ├── doc.go │ │ │ ├── focus.go │ │ │ ├── graphics.go │ │ │ ├── hyperlink.go │ │ │ ├── iterm2.go │ │ │ ├── keypad.go │ │ │ ├── kitty.go │ │ │ ├── kitty │ │ │ │ ├── decoder.go │ │ │ │ ├── encoder.go │ │ │ │ ├── graphics.go │ │ │ │ └── options.go │ │ │ ├── method.go │ │ │ ├── mode.go │ │ │ ├── modes.go │ │ │ ├── mouse.go │ │ │ ├── notification.go │ │ │ ├── parser.go │ │ │ ├── parser │ │ │ │ ├── const.go │ │ │ │ ├── seq.go │ │ │ │ └── transition_table.go │ │ │ ├── parser_decode.go │ │ │ ├── parser_handler.go │ │ │ ├── parser_sync.go │ │ │ ├── passthrough.go │ │ │ ├── paste.go │ │ │ ├── reset.go │ │ │ ├── screen.go │ │ │ ├── sgr.go │ │ │ ├── status.go │ │ │ ├── style.go │ │ │ ├── termcap.go │ │ │ ├── title.go │ │ │ ├── truncate.go │ │ │ ├── util.go │ │ │ ├── width.go │ │ │ ├── winop.go │ │ │ ├── wrap.go │ │ │ └── xterm.go │ │ │ ├── cellbuf │ │ │ ├── LICENSE │ │ │ ├── buffer.go │ │ │ ├── cell.go │ │ │ ├── errors.go │ │ │ ├── geom.go │ │ │ ├── hardscroll.go │ │ │ ├── hashmap.go │ │ │ ├── link.go │ │ │ ├── screen.go │ │ │ ├── sequence.go │ │ │ ├── style.go │ │ │ ├── tabstop.go │ │ │ ├── utils.go │ │ │ ├── wrap.go │ │ │ └── writer.go │ │ │ └── term │ │ │ ├── LICENSE │ │ │ ├── term.go │ │ │ ├── term_other.go │ │ │ ├── term_unix.go │ │ │ ├── term_unix_bsd.go │ │ │ ├── term_unix_other.go │ │ │ ├── term_windows.go │ │ │ ├── terminal.go │ │ │ └── util.go │ ├── ckaznocha │ │ └── intrange │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── go.work │ │ │ └── intrange.go │ ├── client9 │ │ └── misspell │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Dockerfile │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASE-HOWTO.md │ │ │ ├── ascii.go │ │ │ ├── case.go │ │ │ ├── cmd │ │ │ └── misspell │ │ │ │ └── main.go │ │ │ ├── goreleaser.yml │ │ │ ├── install-misspell.sh │ │ │ ├── legal.go │ │ │ ├── mime.go │ │ │ ├── notwords.go │ │ │ ├── replace.go │ │ │ ├── stringreplacer.go │ │ │ ├── stringreplacer_test.gox │ │ │ ├── url.go │ │ │ └── words.go │ ├── cloudflare │ │ └── circl │ │ │ ├── LICENSE │ │ │ ├── dh │ │ │ ├── x25519 │ │ │ │ ├── curve.go │ │ │ │ ├── curve_amd64.go │ │ │ │ ├── curve_amd64.h │ │ │ │ ├── curve_amd64.s │ │ │ │ ├── curve_generic.go │ │ │ │ ├── curve_noasm.go │ │ │ │ ├── doc.go │ │ │ │ ├── key.go │ │ │ │ └── table.go │ │ │ └── x448 │ │ │ │ ├── curve.go │ │ │ │ ├── curve_amd64.go │ │ │ │ ├── curve_amd64.h │ │ │ │ ├── curve_amd64.s │ │ │ │ ├── curve_generic.go │ │ │ │ ├── curve_noasm.go │ │ │ │ ├── doc.go │ │ │ │ ├── key.go │ │ │ │ └── table.go │ │ │ ├── ecc │ │ │ └── goldilocks │ │ │ │ ├── constants.go │ │ │ │ ├── curve.go │ │ │ │ ├── isogeny.go │ │ │ │ ├── point.go │ │ │ │ ├── scalar.go │ │ │ │ ├── twist.go │ │ │ │ ├── twistPoint.go │ │ │ │ ├── twistTables.go │ │ │ │ └── twist_basemult.go │ │ │ ├── internal │ │ │ ├── conv │ │ │ │ └── conv.go │ │ │ └── sha3 │ │ │ │ ├── doc.go │ │ │ │ ├── hashes.go │ │ │ │ ├── keccakf.go │ │ │ │ ├── rc.go │ │ │ │ ├── sha3.go │ │ │ │ ├── sha3_s390x.s │ │ │ │ ├── shake.go │ │ │ │ ├── xor.go │ │ │ │ ├── xor_generic.go │ │ │ │ └── xor_unaligned.go │ │ │ ├── math │ │ │ ├── fp25519 │ │ │ │ ├── fp.go │ │ │ │ ├── fp_amd64.go │ │ │ │ ├── fp_amd64.h │ │ │ │ ├── fp_amd64.s │ │ │ │ ├── fp_generic.go │ │ │ │ └── fp_noasm.go │ │ │ ├── fp448 │ │ │ │ ├── fp.go │ │ │ │ ├── fp_amd64.go │ │ │ │ ├── fp_amd64.h │ │ │ │ ├── fp_amd64.s │ │ │ │ ├── fp_generic.go │ │ │ │ ├── fp_noasm.go │ │ │ │ └── fuzzer.go │ │ │ ├── integer.go │ │ │ ├── mlsbset │ │ │ │ ├── mlsbset.go │ │ │ │ └── power.go │ │ │ ├── primes.go │ │ │ └── wnaf.go │ │ │ └── sign │ │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ ├── modular.go │ │ │ ├── mult.go │ │ │ ├── point.go │ │ │ ├── pubkey.go │ │ │ ├── pubkey112.go │ │ │ ├── signapi.go │ │ │ └── tables.go │ │ │ ├── ed448 │ │ │ ├── ed448.go │ │ │ └── signapi.go │ │ │ └── sign.go │ ├── curioswitch │ │ └── go-reassign │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ └── internal │ │ │ └── analyzer │ │ │ └── analyzer.go │ ├── daixiang0 │ │ └── gci │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── format │ │ │ └── format.go │ │ │ ├── gci │ │ │ ├── gci.go │ │ │ └── testdata.go │ │ │ ├── io │ │ │ ├── file.go │ │ │ ├── search.go │ │ │ └── stdin.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── parse │ │ │ └── parse.go │ │ │ ├── section │ │ │ ├── alias.go │ │ │ ├── blank.go │ │ │ ├── commentline.go │ │ │ ├── default.go │ │ │ ├── dot.go │ │ │ ├── errors.go │ │ │ ├── local_module.go │ │ │ ├── newline.go │ │ │ ├── parser.go │ │ │ ├── prefix.go │ │ │ ├── section.go │ │ │ ├── standard.go │ │ │ └── standard_list.go │ │ │ ├── specificity │ │ │ ├── default.go │ │ │ ├── local_module.go │ │ │ ├── match.go │ │ │ ├── mismatch.go │ │ │ ├── name.go │ │ │ ├── specificity.go │ │ │ └── standard.go │ │ │ └── utils │ │ │ └── constants.go │ ├── dave │ │ └── dst │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── README.md.tpl │ │ │ ├── clone-generated.go │ │ │ ├── clone.go │ │ │ ├── contributing.md │ │ │ ├── decorations-node-generated.go │ │ │ ├── decorations-types-generated.go │ │ │ ├── decorations.go │ │ │ ├── decorator │ │ │ ├── decorator-fragment-generated.go │ │ │ ├── decorator-fragment.go │ │ │ ├── decorator-node-generated.go │ │ │ ├── decorator.go │ │ │ ├── helpers.go │ │ │ ├── load.go │ │ │ ├── map.go │ │ │ ├── resolver │ │ │ │ ├── gopackages │ │ │ │ │ └── resolver.go │ │ │ │ ├── gotypes │ │ │ │ │ └── resolver.go │ │ │ │ └── resolver.go │ │ │ ├── restorer-generated.go │ │ │ └── restorer.go │ │ │ ├── dst.go │ │ │ ├── dstutil │ │ │ ├── decorations-generated.go │ │ │ ├── decorations.go │ │ │ ├── rewrite.go │ │ │ └── util.go │ │ │ ├── print.go │ │ │ ├── readme.go │ │ │ ├── resolve.go │ │ │ ├── scope.go │ │ │ └── walk.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── denis-tingaikin │ │ └── go-header │ │ │ ├── .gitignore │ │ │ ├── .go-header.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── config.go │ │ │ ├── issue.go │ │ │ ├── location.go │ │ │ ├── option.go │ │ │ ├── reader.go │ │ │ └── value.go │ ├── dlclark │ │ └── regexp2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── ATTRIB │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fastclock.go │ │ │ ├── match.go │ │ │ ├── regexp.go │ │ │ ├── replace.go │ │ │ ├── runner.go │ │ │ ├── syntax │ │ │ ├── charclass.go │ │ │ ├── code.go │ │ │ ├── escape.go │ │ │ ├── fuzz.go │ │ │ ├── parser.go │ │ │ ├── prefix.go │ │ │ ├── replacerdata.go │ │ │ ├── tree.go │ │ │ └── writer.go │ │ │ └── testoutput1 │ ├── ettle │ │ └── strcase │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .readme.tmpl │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── assert.go │ │ │ ├── caser.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── initialism.go │ │ │ ├── split.go │ │ │ ├── strcase.go │ │ │ └── unicode.go │ ├── fatih │ │ ├── color │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ ├── color_windows.go │ │ │ └── doc.go │ │ └── structtag │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── tags.go │ ├── firefart │ │ └── nonamedreturns │ │ │ ├── LICENSE │ │ │ └── analyzer │ │ │ └── analyzer.go │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── fsnotify_unsupported.go │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ ├── fzipp │ │ └── gocyclo │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analyze.go │ │ │ ├── complexity.go │ │ │ ├── directives.go │ │ │ ├── recv.go │ │ │ ├── recv_pre118.go │ │ │ └── stats.go │ ├── ghostiam │ │ └── protogetter │ │ │ ├── .goreleaser.yaml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── flake.lock │ │ │ ├── flake.nix │ │ │ ├── posfilter.go │ │ │ ├── processor.go │ │ │ └── protogetter.go │ ├── go-critic │ │ └── go-critic │ │ │ ├── LICENSE │ │ │ ├── checkers │ │ │ ├── appendAssign_checker.go │ │ │ ├── appendCombine_checker.go │ │ │ ├── badCond_checker.go │ │ │ ├── badRegexp_checker.go │ │ │ ├── boolExprSimplify_checker.go │ │ │ ├── builtinShadowDecl_checker.go │ │ │ ├── builtinShadow_checker.go │ │ │ ├── captLocal_checker.go │ │ │ ├── caseOrder_checker.go │ │ │ ├── checkers.go │ │ │ ├── codegenComment_checker.go │ │ │ ├── commentFormatting_checker.go │ │ │ ├── commentedOutCode_checker.go │ │ │ ├── commentedOutImport_checker.go │ │ │ ├── defaultCaseOrder_checker.go │ │ │ ├── deferInLoop_checker.go │ │ │ ├── deprecatedComment_checker.go │ │ │ ├── docStub_checker.go │ │ │ ├── dupBranchBody_checker.go │ │ │ ├── dupCase_checker.go │ │ │ ├── dupImports_checker.go │ │ │ ├── dupOption_checker.go │ │ │ ├── dupSubExpr_checker.go │ │ │ ├── elseif_checker.go │ │ │ ├── embedded_rules.go │ │ │ ├── emptyFallthrough_checker.go │ │ │ ├── evalOrder_checker.go │ │ │ ├── exitAfterDefer_checker.go │ │ │ ├── filepathJoin_checker.go │ │ │ ├── flagName_checker.go │ │ │ ├── hexLiteral_checker.go │ │ │ ├── hugeParam_checker.go │ │ │ ├── ifElseChain_checker.go │ │ │ ├── importShadow_checker.go │ │ │ ├── initClause_checker.go │ │ │ ├── internal │ │ │ │ ├── astwalk │ │ │ │ │ ├── comment_walker.go │ │ │ │ │ ├── doc_comment_walker.go │ │ │ │ │ ├── expr_walker.go │ │ │ │ │ ├── func_decl_walker.go │ │ │ │ │ ├── local_comment_walker.go │ │ │ │ │ ├── local_def_visitor.go │ │ │ │ │ ├── local_def_walker.go │ │ │ │ │ ├── local_expr_walker.go │ │ │ │ │ ├── stmt_list_walker.go │ │ │ │ │ ├── stmt_walker.go │ │ │ │ │ ├── type_expr_walker.go │ │ │ │ │ ├── visitor.go │ │ │ │ │ ├── walk_handler.go │ │ │ │ │ └── walker.go │ │ │ │ └── lintutil │ │ │ │ │ ├── astfind.go │ │ │ │ │ ├── astflow.go │ │ │ │ │ ├── astset.go │ │ │ │ │ └── zero_value.go │ │ │ ├── mapKey_checker.go │ │ │ ├── methodExprCall_checker.go │ │ │ ├── nestingReduce_checker.go │ │ │ ├── newDeref_checker.go │ │ │ ├── nilValReturn_checker.go │ │ │ ├── octalLiteral_checker.go │ │ │ ├── paramTypeCombine_checker.go │ │ │ ├── ptrToRefParam_checker.go │ │ │ ├── rangeAppendAll_checker.go │ │ │ ├── rangeExprCopy_checker.go │ │ │ ├── rangeValCopy_checker.go │ │ │ ├── regexpPattern_checker.go │ │ │ ├── regexpSimplify_checker.go │ │ │ ├── ruleguard_checker.go │ │ │ ├── rulesdata │ │ │ │ └── rulesdata.go │ │ │ ├── singleCaseSwitch_checker.go │ │ │ ├── sloppyReassign_checker.go │ │ │ ├── sloppyTypeAssert_checker.go │ │ │ ├── sortSlice_checker.go │ │ │ ├── sqlQuery_checker.go │ │ │ ├── todoCommentWithoutDetail_checker.go │ │ │ ├── tooManyResults_checker.go │ │ │ ├── truncateCmp_checker.go │ │ │ ├── typeAssertChain_checker.go │ │ │ ├── typeDefFirst_checker.go │ │ │ ├── typeSwitchVar_checker.go │ │ │ ├── typeUnparen_checker.go │ │ │ ├── underef_checker.go │ │ │ ├── unlabelStmt_checker.go │ │ │ ├── unlambda_checker.go │ │ │ ├── unnamedResult_checker.go │ │ │ ├── unnecessaryBlock_checker.go │ │ │ ├── unnecessaryDefer_checker.go │ │ │ ├── utils.go │ │ │ ├── weakCond_checker.go │ │ │ └── whyNoLint_checker.go │ │ │ └── linter │ │ │ ├── go_version.go │ │ │ ├── helpers.go │ │ │ └── linter.go │ ├── go-jose │ │ └── go-jose │ │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── asymmetric.go │ │ │ ├── cipher │ │ │ ├── cbc_hmac.go │ │ │ ├── concat_kdf.go │ │ │ ├── ecdh_es.go │ │ │ └── key_wrap.go │ │ │ ├── crypter.go │ │ │ ├── doc.go │ │ │ ├── encoding.go │ │ │ ├── json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ └── tags.go │ │ │ ├── jwe.go │ │ │ ├── jwk.go │ │ │ ├── jws.go │ │ │ ├── jwt │ │ │ ├── builder.go │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── jwt.go │ │ │ └── validation.go │ │ │ ├── opaque.go │ │ │ ├── shared.go │ │ │ ├── signing.go │ │ │ └── symmetric.go │ ├── go-toolsmith │ │ ├── astcast │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── astcast.go │ │ ├── astcopy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── astcopy.go │ │ │ ├── astcopy_go117.go │ │ │ └── astcopy_go118.go │ │ ├── astequal │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── astequal.go │ │ │ └── diff.go │ │ ├── astfmt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── astfmt.go │ │ ├── astp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decl.go │ │ │ ├── expr.go │ │ │ └── stmt.go │ │ ├── strparse │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── strparse.go │ │ └── typep │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── predicates.go │ │ │ ├── safe_expr.go │ │ │ └── simple_predicates.go │ ├── go-viper │ │ └── mapstructure │ │ │ └── v2 │ │ │ ├── .editorconfig │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── errors.go │ │ │ ├── flake.lock │ │ │ ├── flake.nix │ │ │ ├── internal │ │ │ └── errors │ │ │ │ ├── errors.go │ │ │ │ ├── join.go │ │ │ │ └── join_go1_19.go │ │ │ ├── mapstructure.go │ │ │ ├── reflect_go1_19.go │ │ │ └── reflect_go1_20.go │ ├── go-xmlfmt │ │ └── xmlfmt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── xmlfmt.go │ ├── gobwas │ │ └── glob │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── bench.sh │ │ │ ├── compiler │ │ │ └── compiler.go │ │ │ ├── glob.go │ │ │ ├── match │ │ │ ├── any.go │ │ │ ├── any_of.go │ │ │ ├── btree.go │ │ │ ├── contains.go │ │ │ ├── every_of.go │ │ │ ├── list.go │ │ │ ├── match.go │ │ │ ├── max.go │ │ │ ├── min.go │ │ │ ├── nothing.go │ │ │ ├── prefix.go │ │ │ ├── prefix_any.go │ │ │ ├── prefix_suffix.go │ │ │ ├── range.go │ │ │ ├── row.go │ │ │ ├── segments.go │ │ │ ├── single.go │ │ │ ├── suffix.go │ │ │ ├── suffix_any.go │ │ │ ├── super.go │ │ │ └── text.go │ │ │ ├── readme.md │ │ │ ├── syntax │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── parser.go │ │ │ ├── lexer │ │ │ │ ├── lexer.go │ │ │ │ └── token.go │ │ │ └── syntax.go │ │ │ └── util │ │ │ ├── runes │ │ │ └── runes.go │ │ │ └── strings │ │ │ └── strings.go │ ├── godoc-lint │ │ └── godoc-lint │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ ├── analysis │ │ │ └── analyzer.go │ │ │ ├── check │ │ │ ├── deprecated │ │ │ │ └── deprecated.go │ │ │ ├── max_len │ │ │ │ └── max_len.go │ │ │ ├── no_unused_link │ │ │ │ └── no_unused_link.go │ │ │ ├── pkg_doc │ │ │ │ └── pkg_doc.go │ │ │ ├── registry.go │ │ │ ├── require_doc │ │ │ │ └── require_doc.go │ │ │ ├── shared │ │ │ │ └── deprecated.go │ │ │ └── start_with_name │ │ │ │ └── start_with_name.go │ │ │ ├── compose │ │ │ └── compose.go │ │ │ ├── config │ │ │ ├── builder.go │ │ │ ├── config.go │ │ │ ├── default.go │ │ │ ├── default.yaml │ │ │ ├── doc.go │ │ │ ├── once.go │ │ │ ├── parser.go │ │ │ └── plain.go │ │ │ ├── inspect │ │ │ └── inspector.go │ │ │ ├── model │ │ │ ├── analyzer.go │ │ │ ├── checker.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── inspector.go │ │ │ ├── registry.go │ │ │ ├── rule.go │ │ │ └── ruleset.go │ │ │ └── util │ │ │ ├── ast.go │ │ │ ├── doc.go │ │ │ └── path.go │ ├── gofrs │ │ └── flock │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── build.sh │ │ │ ├── flock.go │ │ │ ├── flock_others.go │ │ │ ├── flock_unix.go │ │ │ ├── flock_unix_fcntl.go │ │ │ └── flock_windows.go │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── buffer.go │ │ │ ├── defaults.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── extensions.go │ │ │ ├── properties.go │ │ │ ├── proto.go │ │ │ ├── registry.go │ │ │ ├── text_decode.go │ │ │ ├── text_encode.go │ │ │ ├── wire.go │ │ │ └── wrappers.go │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ └── any.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ └── duration.pb.go │ │ │ ├── empty │ │ │ └── empty.pb.go │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ └── timestamp.pb.go │ ├── golangci │ │ ├── asciicheck │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ascii.go │ │ │ └── asciicheck.go │ │ ├── dupl │ │ │ ├── LICENSE │ │ │ ├── job │ │ │ │ ├── buildtree.go │ │ │ │ └── parse.go │ │ │ ├── lib │ │ │ │ └── lib.go │ │ │ ├── printer │ │ │ │ ├── html.go │ │ │ │ ├── issuer.go │ │ │ │ ├── plumbing.go │ │ │ │ ├── printer.go │ │ │ │ └── text.go │ │ │ ├── suffixtree │ │ │ │ ├── dupl.go │ │ │ │ └── suffixtree.go │ │ │ └── syntax │ │ │ │ ├── golang │ │ │ │ └── golang.go │ │ │ │ └── syntax.go │ │ ├── go-printf-func-name │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ │ └── analyzer │ │ │ │ └── analyzer.go │ │ ├── gofmt │ │ │ └── gofmt │ │ │ │ ├── LICENSE │ │ │ │ ├── doc.go │ │ │ │ ├── gofmt.go │ │ │ │ ├── golangci.go │ │ │ │ ├── internal.go │ │ │ │ ├── readme.md │ │ │ │ ├── rewrite.go │ │ │ │ └── simplify.go │ │ ├── golangci-lint │ │ │ └── v2 │ │ │ │ ├── LICENSE │ │ │ │ ├── cmd │ │ │ │ └── golangci-lint │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugins.go │ │ │ │ ├── internal │ │ │ │ ├── cache │ │ │ │ │ └── cache.go │ │ │ │ ├── errorutil │ │ │ │ │ └── errors.go │ │ │ │ ├── go │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── base │ │ │ │ │ │ ├── error_notunix.go │ │ │ │ │ │ ├── error_unix.go │ │ │ │ │ │ └── readme.md │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── cache_gcil.go │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── default_gcil.go │ │ │ │ │ │ ├── hash.go │ │ │ │ │ │ ├── hash_gcil.go │ │ │ │ │ │ ├── prog.go │ │ │ │ │ │ └── readme.md │ │ │ │ │ ├── cacheprog │ │ │ │ │ │ ├── cacheprog.go │ │ │ │ │ │ └── readme.md │ │ │ │ │ ├── mmap │ │ │ │ │ │ ├── mmap.go │ │ │ │ │ │ ├── mmap_other.go │ │ │ │ │ │ ├── mmap_unix.go │ │ │ │ │ │ ├── mmap_windows.go │ │ │ │ │ │ └── readme.md │ │ │ │ │ └── quoted │ │ │ │ │ │ ├── quoted.go │ │ │ │ │ │ └── readme.md │ │ │ │ └── x │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── tools │ │ │ │ │ ├── analysisflags │ │ │ │ │ ├── readme.md │ │ │ │ │ └── url.go │ │ │ │ │ ├── analysisinternal │ │ │ │ │ ├── analysis.go │ │ │ │ │ └── readme.md │ │ │ │ │ └── diff │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── lcs │ │ │ │ │ ├── common.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── git.sh │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── old.go │ │ │ │ │ └── sequence.go │ │ │ │ │ ├── ndiff.go │ │ │ │ │ ├── readme.md │ │ │ │ │ └── unified.go │ │ │ │ └── pkg │ │ │ │ ├── commands │ │ │ │ ├── cache.go │ │ │ │ ├── config.go │ │ │ │ ├── config_verify.go │ │ │ │ ├── custom.go │ │ │ │ ├── flagsets.go │ │ │ │ ├── fmt.go │ │ │ │ ├── formatters.go │ │ │ │ ├── help.go │ │ │ │ ├── help_formatters.go │ │ │ │ ├── help_linters.go │ │ │ │ ├── internal │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── dirhash.go │ │ │ │ │ ├── imports.go │ │ │ │ │ ├── migrate │ │ │ │ │ │ ├── fakeloader │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ └── fakeloader.go │ │ │ │ │ │ ├── migrate.go │ │ │ │ │ │ ├── migrate_formatters.go │ │ │ │ │ │ ├── migrate_issues.go │ │ │ │ │ │ ├── migrate_linter_names.go │ │ │ │ │ │ ├── migrate_linters.go │ │ │ │ │ │ ├── migrate_linters_exclusions.go │ │ │ │ │ │ ├── migrate_linters_settings.go │ │ │ │ │ │ ├── migrate_output.go │ │ │ │ │ │ ├── migrate_run.go │ │ │ │ │ │ ├── migrate_severity.go │ │ │ │ │ │ ├── parser │ │ │ │ │ │ │ └── parser.go │ │ │ │ │ │ ├── ptr │ │ │ │ │ │ │ └── ptr.go │ │ │ │ │ │ ├── versionone │ │ │ │ │ │ │ ├── base_rule.go │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── issues.go │ │ │ │ │ │ │ ├── linters.go │ │ │ │ │ │ │ ├── linters_settings.go │ │ │ │ │ │ │ ├── output.go │ │ │ │ │ │ │ ├── run.go │ │ │ │ │ │ │ └── severity.go │ │ │ │ │ │ └── versiontwo │ │ │ │ │ │ │ ├── base_rule.go │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── formatters.go │ │ │ │ │ │ │ ├── formatters_settings.go │ │ │ │ │ │ │ ├── issues.go │ │ │ │ │ │ │ ├── linters.go │ │ │ │ │ │ │ ├── linters_exclusions.go │ │ │ │ │ │ │ ├── linters_settings.go │ │ │ │ │ │ │ ├── output.go │ │ │ │ │ │ │ ├── output_formats.go │ │ │ │ │ │ │ ├── run.go │ │ │ │ │ │ │ └── severity.go │ │ │ │ │ └── vibra.go │ │ │ │ ├── linters.go │ │ │ │ ├── migrate.go │ │ │ │ ├── root.go │ │ │ │ ├── run.go │ │ │ │ └── version.go │ │ │ │ ├── config │ │ │ │ ├── base_loader.go │ │ │ │ ├── base_rule.go │ │ │ │ ├── config.go │ │ │ │ ├── formatters.go │ │ │ │ ├── formatters_settings.go │ │ │ │ ├── issues.go │ │ │ │ ├── linters.go │ │ │ │ ├── linters_exclusions.go │ │ │ │ ├── linters_settings.go │ │ │ │ ├── loader.go │ │ │ │ ├── output.go │ │ │ │ ├── output_formats.go │ │ │ │ ├── placeholders.go │ │ │ │ ├── run.go │ │ │ │ └── severity.go │ │ │ │ ├── exitcodes │ │ │ │ └── exitcodes.go │ │ │ │ ├── fsutils │ │ │ │ ├── basepath.go │ │ │ │ ├── filecache.go │ │ │ │ ├── fsutils.go │ │ │ │ ├── fsutils_unix.go │ │ │ │ ├── fsutils_windows.go │ │ │ │ ├── linecache.go │ │ │ │ ├── path_unix.go │ │ │ │ └── path_windows.go │ │ │ │ ├── goanalysis │ │ │ │ ├── issue.go │ │ │ │ ├── linter.go │ │ │ │ ├── load │ │ │ │ │ └── guard.go │ │ │ │ ├── metalinter.go │ │ │ │ ├── pkgerrors │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── extract.go │ │ │ │ │ └── parse.go │ │ │ │ ├── position.go │ │ │ │ ├── runner.go │ │ │ │ ├── runner_action.go │ │ │ │ ├── runner_action_cache.go │ │ │ │ ├── runner_checker.go │ │ │ │ ├── runner_loadingpackage.go │ │ │ │ ├── runners.go │ │ │ │ └── runners_cache.go │ │ │ │ ├── goformat │ │ │ │ └── runner.go │ │ │ │ ├── goformatters │ │ │ │ ├── analyzer.go │ │ │ │ ├── formatters.go │ │ │ │ ├── gci │ │ │ │ │ ├── gci.go │ │ │ │ │ └── internal │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── config.go │ │ │ │ │ │ └── section │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── section.go │ │ │ │ │ │ ├── standard.go │ │ │ │ │ │ └── standard_list.go │ │ │ │ ├── gofmt │ │ │ │ │ └── gofmt.go │ │ │ │ ├── gofumpt │ │ │ │ │ └── gofumpt.go │ │ │ │ ├── goimports │ │ │ │ │ └── goimports.go │ │ │ │ ├── golines │ │ │ │ │ └── golines.go │ │ │ │ ├── internal │ │ │ │ │ ├── commons.go │ │ │ │ │ └── diff.go │ │ │ │ ├── meta_formatter.go │ │ │ │ └── swaggo │ │ │ │ │ └── swaggo.go │ │ │ │ ├── golinters │ │ │ │ ├── arangolint │ │ │ │ │ └── arangolint.go │ │ │ │ ├── asasalint │ │ │ │ │ └── asasalint.go │ │ │ │ ├── asciicheck │ │ │ │ │ └── asciicheck.go │ │ │ │ ├── bidichk │ │ │ │ │ └── bidichk.go │ │ │ │ ├── bodyclose │ │ │ │ │ └── bodyclose.go │ │ │ │ ├── canonicalheader │ │ │ │ │ └── canonicalheader.go │ │ │ │ ├── containedctx │ │ │ │ │ └── containedctx.go │ │ │ │ ├── contextcheck │ │ │ │ │ └── contextcheck.go │ │ │ │ ├── copyloopvar │ │ │ │ │ └── copyloopvar.go │ │ │ │ ├── cyclop │ │ │ │ │ └── cyclop.go │ │ │ │ ├── decorder │ │ │ │ │ └── decorder.go │ │ │ │ ├── depguard │ │ │ │ │ └── depguard.go │ │ │ │ ├── dogsled │ │ │ │ │ └── dogsled.go │ │ │ │ ├── dupl │ │ │ │ │ └── dupl.go │ │ │ │ ├── dupword │ │ │ │ │ └── dupword.go │ │ │ │ ├── durationcheck │ │ │ │ │ └── durationcheck.go │ │ │ │ ├── embeddedstructfieldcheck │ │ │ │ │ └── embeddedstructfieldcheck.go │ │ │ │ ├── err113 │ │ │ │ │ └── err113.go │ │ │ │ ├── errcheck │ │ │ │ │ └── errcheck.go │ │ │ │ ├── errchkjson │ │ │ │ │ └── errchkjson.go │ │ │ │ ├── errname │ │ │ │ │ └── errname.go │ │ │ │ ├── errorlint │ │ │ │ │ └── errorlint.go │ │ │ │ ├── exhaustive │ │ │ │ │ └── exhaustive.go │ │ │ │ ├── exhaustruct │ │ │ │ │ └── exhaustruct.go │ │ │ │ ├── exptostd │ │ │ │ │ └── exptostd.go │ │ │ │ ├── fatcontext │ │ │ │ │ └── fatcontext.go │ │ │ │ ├── forbidigo │ │ │ │ │ └── forbidigo.go │ │ │ │ ├── forcetypeassert │ │ │ │ │ └── forcetypeassert.go │ │ │ │ ├── funcorder │ │ │ │ │ └── funcorder.go │ │ │ │ ├── funlen │ │ │ │ │ └── funlen.go │ │ │ │ ├── gci │ │ │ │ │ └── gci.go │ │ │ │ ├── ginkgolinter │ │ │ │ │ └── ginkgolinter.go │ │ │ │ ├── gocheckcompilerdirectives │ │ │ │ │ └── gocheckcompilerdirectives.go │ │ │ │ ├── gochecknoglobals │ │ │ │ │ └── gochecknoglobals.go │ │ │ │ ├── gochecknoinits │ │ │ │ │ └── gochecknoinits.go │ │ │ │ ├── gochecksumtype │ │ │ │ │ └── gochecksumtype.go │ │ │ │ ├── gocognit │ │ │ │ │ └── gocognit.go │ │ │ │ ├── goconst │ │ │ │ │ └── goconst.go │ │ │ │ ├── gocritic │ │ │ │ │ ├── gocritic.go │ │ │ │ │ └── gocritic_settings.go │ │ │ │ ├── gocyclo │ │ │ │ │ └── gocyclo.go │ │ │ │ ├── godoclint │ │ │ │ │ └── godoclint.go │ │ │ │ ├── godot │ │ │ │ │ └── godot.go │ │ │ │ ├── godox │ │ │ │ │ └── godox.go │ │ │ │ ├── gofmt │ │ │ │ │ └── gofmt.go │ │ │ │ ├── gofumpt │ │ │ │ │ └── gofumpt.go │ │ │ │ ├── goheader │ │ │ │ │ └── goheader.go │ │ │ │ ├── goimports │ │ │ │ │ └── goimports.go │ │ │ │ ├── golines │ │ │ │ │ └── golines.go │ │ │ │ ├── gomoddirectives │ │ │ │ │ └── gomoddirectives.go │ │ │ │ ├── gomodguard │ │ │ │ │ └── gomodguard.go │ │ │ │ ├── goprintffuncname │ │ │ │ │ └── goprintffuncname.go │ │ │ │ ├── gosec │ │ │ │ │ └── gosec.go │ │ │ │ ├── gosmopolitan │ │ │ │ │ └── gosmopolitan.go │ │ │ │ ├── govet │ │ │ │ │ └── govet.go │ │ │ │ ├── grouper │ │ │ │ │ └── grouper.go │ │ │ │ ├── iface │ │ │ │ │ └── iface.go │ │ │ │ ├── importas │ │ │ │ │ └── importas.go │ │ │ │ ├── inamedparam │ │ │ │ │ └── inamedparam.go │ │ │ │ ├── ineffassign │ │ │ │ │ └── ineffassign.go │ │ │ │ ├── interfacebloat │ │ │ │ │ └── interfacebloat.go │ │ │ │ ├── internal │ │ │ │ │ ├── commons.go │ │ │ │ │ └── util.go │ │ │ │ ├── intrange │ │ │ │ │ └── intrange.go │ │ │ │ ├── iotamixing │ │ │ │ │ └── iotamixing.go │ │ │ │ ├── ireturn │ │ │ │ │ └── ireturn.go │ │ │ │ ├── lll │ │ │ │ │ └── lll.go │ │ │ │ ├── loggercheck │ │ │ │ │ └── loggercheck.go │ │ │ │ ├── maintidx │ │ │ │ │ └── maintidx.go │ │ │ │ ├── makezero │ │ │ │ │ └── makezero.go │ │ │ │ ├── mirror │ │ │ │ │ └── mirror.go │ │ │ │ ├── misspell │ │ │ │ │ └── misspell.go │ │ │ │ ├── mnd │ │ │ │ │ └── mnd.go │ │ │ │ ├── modernize │ │ │ │ │ └── modernize.go │ │ │ │ ├── musttag │ │ │ │ │ └── musttag.go │ │ │ │ ├── nakedret │ │ │ │ │ └── nakedret.go │ │ │ │ ├── nestif │ │ │ │ │ └── nestif.go │ │ │ │ ├── nilerr │ │ │ │ │ └── nilerr.go │ │ │ │ ├── nilnesserr │ │ │ │ │ └── nilnesserr.go │ │ │ │ ├── nilnil │ │ │ │ │ └── nilnil.go │ │ │ │ ├── nlreturn │ │ │ │ │ └── nlreturn.go │ │ │ │ ├── noctx │ │ │ │ │ └── noctx.go │ │ │ │ ├── noinlineerr │ │ │ │ │ └── noinlineerr.go │ │ │ │ ├── nolintlint │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── issues.go │ │ │ │ │ │ └── nolintlint.go │ │ │ │ │ └── nolintlint.go │ │ │ │ ├── nonamedreturns │ │ │ │ │ └── nonamedreturns.go │ │ │ │ ├── nosprintfhostport │ │ │ │ │ └── nosprintfhostport.go │ │ │ │ ├── paralleltest │ │ │ │ │ └── paralleltest.go │ │ │ │ ├── perfsprint │ │ │ │ │ └── perfsprint.go │ │ │ │ ├── prealloc │ │ │ │ │ └── prealloc.go │ │ │ │ ├── predeclared │ │ │ │ │ └── predeclared.go │ │ │ │ ├── promlinter │ │ │ │ │ └── promlinter.go │ │ │ │ ├── protogetter │ │ │ │ │ └── protogetter.go │ │ │ │ ├── reassign │ │ │ │ │ └── reassign.go │ │ │ │ ├── recvcheck │ │ │ │ │ └── recvcheck.go │ │ │ │ ├── revive │ │ │ │ │ └── revive.go │ │ │ │ ├── rowserrcheck │ │ │ │ │ └── rowserrcheck.go │ │ │ │ ├── sloglint │ │ │ │ │ └── sloglint.go │ │ │ │ ├── spancheck │ │ │ │ │ └── spancheck.go │ │ │ │ ├── sqlclosecheck │ │ │ │ │ └── sqlclosecheck.go │ │ │ │ ├── staticcheck │ │ │ │ │ └── staticcheck.go │ │ │ │ ├── swaggo │ │ │ │ │ └── swaggo.go │ │ │ │ ├── tagalign │ │ │ │ │ └── tagalign.go │ │ │ │ ├── tagliatelle │ │ │ │ │ └── tagliatelle.go │ │ │ │ ├── testableexamples │ │ │ │ │ └── testableexamples.go │ │ │ │ ├── testifylint │ │ │ │ │ └── testifylint.go │ │ │ │ ├── testpackage │ │ │ │ │ └── testpackage.go │ │ │ │ ├── thelper │ │ │ │ │ └── thelper.go │ │ │ │ ├── tparallel │ │ │ │ │ └── tparallel.go │ │ │ │ ├── typecheck.go │ │ │ │ ├── unconvert │ │ │ │ │ └── unconvert.go │ │ │ │ ├── unparam │ │ │ │ │ └── unparam.go │ │ │ │ ├── unqueryvet │ │ │ │ │ └── unqueryvet.go │ │ │ │ ├── unused │ │ │ │ │ └── unused.go │ │ │ │ ├── usestdlibvars │ │ │ │ │ └── usestdlibvars.go │ │ │ │ ├── usetesting │ │ │ │ │ └── usetesting.go │ │ │ │ ├── varnamelen │ │ │ │ │ └── varnamelen.go │ │ │ │ ├── wastedassign │ │ │ │ │ └── wastedassign.go │ │ │ │ ├── whitespace │ │ │ │ │ └── whitespace.go │ │ │ │ ├── wrapcheck │ │ │ │ │ └── wrapcheck.go │ │ │ │ ├── wsl │ │ │ │ │ ├── wsl.go │ │ │ │ │ └── wsl_v5.go │ │ │ │ └── zerologlint │ │ │ │ │ └── zerologlint.go │ │ │ │ ├── goutil │ │ │ │ ├── env.go │ │ │ │ └── version.go │ │ │ │ ├── lint │ │ │ │ ├── context.go │ │ │ │ ├── linter │ │ │ │ │ ├── config.go │ │ │ │ │ ├── context.go │ │ │ │ │ └── linter.go │ │ │ │ ├── lintersdb │ │ │ │ │ ├── builder_linter.go │ │ │ │ │ ├── builder_plugin_go.go │ │ │ │ │ ├── builder_plugin_module.go │ │ │ │ │ ├── manager.go │ │ │ │ │ └── validator.go │ │ │ │ ├── package.go │ │ │ │ └── runner.go │ │ │ │ ├── logutils │ │ │ │ ├── log.go │ │ │ │ ├── logutils.go │ │ │ │ ├── mock.go │ │ │ │ ├── out.go │ │ │ │ └── stderr_log.go │ │ │ │ ├── printers │ │ │ │ ├── checkstyle.go │ │ │ │ ├── codeclimate.go │ │ │ │ ├── html.go │ │ │ │ ├── json.go │ │ │ │ ├── junitxml.go │ │ │ │ ├── printer.go │ │ │ │ ├── sarif.go │ │ │ │ ├── tab.go │ │ │ │ ├── teamcity.go │ │ │ │ └── text.go │ │ │ │ ├── report │ │ │ │ ├── data.go │ │ │ │ └── log.go │ │ │ │ ├── result │ │ │ │ ├── issue.go │ │ │ │ └── processors │ │ │ │ │ ├── base_rule.go │ │ │ │ │ ├── cgo.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── exclusion_generated_file_filter.go │ │ │ │ │ ├── exclusion_generated_file_matcher.go │ │ │ │ │ ├── exclusion_paths.go │ │ │ │ │ ├── exclusion_presets.go │ │ │ │ │ ├── exclusion_rules.go │ │ │ │ │ ├── filename_unadjuster.go │ │ │ │ │ ├── fixer.go │ │ │ │ │ ├── invalid_issue.go │ │ │ │ │ ├── issues.go │ │ │ │ │ ├── max_from_linter.go │ │ │ │ │ ├── max_per_file_from_linter.go │ │ │ │ │ ├── max_same_issues.go │ │ │ │ │ ├── nolint_filter.go │ │ │ │ │ ├── path_absoluter.go │ │ │ │ │ ├── path_prettifier.go │ │ │ │ │ ├── path_relativity.go │ │ │ │ │ ├── path_shortener.go │ │ │ │ │ ├── processor.go │ │ │ │ │ ├── severity.go │ │ │ │ │ ├── sort_results.go │ │ │ │ │ ├── source_code.go │ │ │ │ │ └── uniq_by_line.go │ │ │ │ └── timeutils │ │ │ │ └── stopwatch.go │ │ ├── golines │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── annotation.go │ │ │ ├── shortener.go │ │ │ └── tags.go │ │ ├── misspell │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .pre-commit-hooks.yaml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASE-HOWTO.md │ │ │ ├── ascii.go │ │ │ ├── case.go │ │ │ ├── goreleaser.yml │ │ │ ├── install-misspell.sh │ │ │ ├── legal.go │ │ │ ├── mime.go │ │ │ ├── notwords.go │ │ │ ├── replace.go │ │ │ ├── stringreplacer.go │ │ │ ├── stringreplacer_test.gox │ │ │ ├── url.go │ │ │ ├── words.go │ │ │ ├── words_uk.go │ │ │ └── words_us.go │ │ ├── plugin-module-register │ │ │ ├── LICENSE │ │ │ └── register │ │ │ │ └── register.go │ │ ├── revgrep │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── issue.go │ │ │ ├── patch.go │ │ │ └── revgrep.go │ │ ├── swaggoswag │ │ │ ├── .gitignore │ │ │ ├── formatter.go │ │ │ ├── license │ │ │ ├── parser.go │ │ │ └── readme.md │ │ └── unconvert │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── golangci.go │ │ │ └── unconvert.go │ ├── google │ │ ├── go-cmp │ │ │ ├── LICENSE │ │ │ └── cmp │ │ │ │ ├── compare.go │ │ │ │ ├── export.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── flags │ │ │ │ │ └── flags.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── name.go │ │ │ │ │ ├── pointer.go │ │ │ │ │ └── sort.go │ │ │ │ ├── options.go │ │ │ │ ├── path.go │ │ │ │ ├── report.go │ │ │ │ ├── report_compare.go │ │ │ │ ├── report_references.go │ │ │ │ ├── report_reflect.go │ │ │ │ ├── report_slices.go │ │ │ │ ├── report_text.go │ │ │ │ └── report_value.go │ │ ├── go-github │ │ │ └── v67 │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ └── github │ │ │ │ ├── actions.go │ │ │ │ ├── actions_artifacts.go │ │ │ │ ├── actions_cache.go │ │ │ │ ├── actions_oidc.go │ │ │ │ ├── actions_permissions_enterprise.go │ │ │ │ ├── actions_permissions_orgs.go │ │ │ │ ├── actions_required_workflows.go │ │ │ │ ├── actions_runner_groups.go │ │ │ │ ├── actions_runners.go │ │ │ │ ├── actions_secrets.go │ │ │ │ ├── actions_variables.go │ │ │ │ ├── actions_workflow_jobs.go │ │ │ │ ├── actions_workflow_runs.go │ │ │ │ ├── actions_workflows.go │ │ │ │ ├── activity.go │ │ │ │ ├── activity_events.go │ │ │ │ ├── activity_notifications.go │ │ │ │ ├── activity_star.go │ │ │ │ ├── activity_watching.go │ │ │ │ ├── admin.go │ │ │ │ ├── admin_orgs.go │ │ │ │ ├── admin_stats.go │ │ │ │ ├── admin_users.go │ │ │ │ ├── apps.go │ │ │ │ ├── apps_hooks.go │ │ │ │ ├── apps_hooks_deliveries.go │ │ │ │ ├── apps_installation.go │ │ │ │ ├── apps_manifest.go │ │ │ │ ├── apps_marketplace.go │ │ │ │ ├── attestations.go │ │ │ │ ├── authorizations.go │ │ │ │ ├── billing.go │ │ │ │ ├── checks.go │ │ │ │ ├── code_scanning.go │ │ │ │ ├── codesofconduct.go │ │ │ │ ├── codespaces.go │ │ │ │ ├── codespaces_secrets.go │ │ │ │ ├── copilot.go │ │ │ │ ├── dependabot.go │ │ │ │ ├── dependabot_alerts.go │ │ │ │ ├── dependabot_secrets.go │ │ │ │ ├── dependency_graph.go │ │ │ │ ├── dependency_graph_snapshots.go │ │ │ │ ├── doc.go │ │ │ │ ├── emojis.go │ │ │ │ ├── enterprise.go │ │ │ │ ├── enterprise_actions_runner_groups.go │ │ │ │ ├── enterprise_actions_runners.go │ │ │ │ ├── enterprise_audit_log.go │ │ │ │ ├── enterprise_code_security_and_analysis.go │ │ │ │ ├── event.go │ │ │ │ ├── event_types.go │ │ │ │ ├── gists.go │ │ │ │ ├── gists_comments.go │ │ │ │ ├── git.go │ │ │ │ ├── git_blobs.go │ │ │ │ ├── git_commits.go │ │ │ │ ├── git_refs.go │ │ │ │ ├── git_tags.go │ │ │ │ ├── git_trees.go │ │ │ │ ├── github-accessors.go │ │ │ │ ├── github.go │ │ │ │ ├── gitignore.go │ │ │ │ ├── interactions.go │ │ │ │ ├── interactions_orgs.go │ │ │ │ ├── interactions_repos.go │ │ │ │ ├── issue_import.go │ │ │ │ ├── issues.go │ │ │ │ ├── issues_assignees.go │ │ │ │ ├── issues_comments.go │ │ │ │ ├── issues_events.go │ │ │ │ ├── issues_labels.go │ │ │ │ ├── issues_milestones.go │ │ │ │ ├── issues_timeline.go │ │ │ │ ├── licenses.go │ │ │ │ ├── markdown.go │ │ │ │ ├── messages.go │ │ │ │ ├── meta.go │ │ │ │ ├── migrations.go │ │ │ │ ├── migrations_source_import.go │ │ │ │ ├── migrations_user.go │ │ │ │ ├── orgs.go │ │ │ │ ├── orgs_actions_allowed.go │ │ │ │ ├── orgs_actions_permissions.go │ │ │ │ ├── orgs_attestations.go │ │ │ │ ├── orgs_audit_log.go │ │ │ │ ├── orgs_codesecurity_configurations.go │ │ │ │ ├── orgs_credential_authorizations.go │ │ │ │ ├── orgs_custom_repository_roles.go │ │ │ │ ├── orgs_hooks.go │ │ │ │ ├── orgs_hooks_configuration.go │ │ │ │ ├── orgs_hooks_deliveries.go │ │ │ │ ├── orgs_members.go │ │ │ │ ├── orgs_organization_roles.go │ │ │ │ ├── orgs_outside_collaborators.go │ │ │ │ ├── orgs_packages.go │ │ │ │ ├── orgs_personal_access_tokens.go │ │ │ │ ├── orgs_projects.go │ │ │ │ ├── orgs_properties.go │ │ │ │ ├── orgs_rules.go │ │ │ │ ├── orgs_security_managers.go │ │ │ │ ├── orgs_users_blocking.go │ │ │ │ ├── packages.go │ │ │ │ ├── projects.go │ │ │ │ ├── pulls.go │ │ │ │ ├── pulls_comments.go │ │ │ │ ├── pulls_reviewers.go │ │ │ │ ├── pulls_reviews.go │ │ │ │ ├── pulls_threads.go │ │ │ │ ├── rate_limit.go │ │ │ │ ├── reactions.go │ │ │ │ ├── repos.go │ │ │ │ ├── repos_actions_access.go │ │ │ │ ├── repos_actions_allowed.go │ │ │ │ ├── repos_actions_permissions.go │ │ │ │ ├── repos_attestations.go │ │ │ │ ├── repos_autolinks.go │ │ │ │ ├── repos_codeowners.go │ │ │ │ ├── repos_collaborators.go │ │ │ │ ├── repos_comments.go │ │ │ │ ├── repos_commits.go │ │ │ │ ├── repos_community_health.go │ │ │ │ ├── repos_contents.go │ │ │ │ ├── repos_deployment_branch_policies.go │ │ │ │ ├── repos_deployment_protection_rules.go │ │ │ │ ├── repos_deployments.go │ │ │ │ ├── repos_environments.go │ │ │ │ ├── repos_forks.go │ │ │ │ ├── repos_hooks.go │ │ │ │ ├── repos_hooks_configuration.go │ │ │ │ ├── repos_hooks_deliveries.go │ │ │ │ ├── repos_invitations.go │ │ │ │ ├── repos_keys.go │ │ │ │ ├── repos_lfs.go │ │ │ │ ├── repos_merging.go │ │ │ │ ├── repos_pages.go │ │ │ │ ├── repos_prereceive_hooks.go │ │ │ │ ├── repos_projects.go │ │ │ │ ├── repos_properties.go │ │ │ │ ├── repos_releases.go │ │ │ │ ├── repos_rules.go │ │ │ │ ├── repos_stats.go │ │ │ │ ├── repos_statuses.go │ │ │ │ ├── repos_tags.go │ │ │ │ ├── repos_traffic.go │ │ │ │ ├── scim.go │ │ │ │ ├── search.go │ │ │ │ ├── secret_scanning.go │ │ │ │ ├── security_advisories.go │ │ │ │ ├── strings.go │ │ │ │ ├── teams.go │ │ │ │ ├── teams_discussion_comments.go │ │ │ │ ├── teams_discussions.go │ │ │ │ ├── teams_members.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── users.go │ │ │ │ ├── users_administration.go │ │ │ │ ├── users_attestations.go │ │ │ │ ├── users_blocking.go │ │ │ │ ├── users_emails.go │ │ │ │ ├── users_followers.go │ │ │ │ ├── users_gpg_keys.go │ │ │ │ ├── users_keys.go │ │ │ │ ├── users_packages.go │ │ │ │ ├── users_projects.go │ │ │ │ ├── users_ssh_signing_keys.go │ │ │ │ ├── with_appengine.go │ │ │ │ └── without_appengine.go │ │ ├── go-querystring │ │ │ ├── LICENSE │ │ │ └── query │ │ │ │ └── encode.go │ │ └── uuid │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── null.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ ├── version4.go │ │ │ ├── version6.go │ │ │ └── version7.go │ ├── gordonklaus │ │ └── ineffassign │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── ineffassign │ │ │ └── ineffassign.go │ ├── gostaticanalysis │ │ ├── analysisutil │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── call.go │ │ │ ├── diagnostic.go │ │ │ ├── file.go │ │ │ ├── pkg.go │ │ │ ├── ssa.go │ │ │ ├── ssainspect.go │ │ │ └── types.go │ │ ├── comment │ │ │ ├── .tagpr │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── comment.go │ │ │ ├── passes │ │ │ │ └── commentmap │ │ │ │ │ └── commentmap.go │ │ │ └── version.txt │ │ ├── forcetypeassert │ │ │ ├── .reviewdog.yml │ │ │ ├── .tagpr │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── forcetypeassert.go │ │ │ └── version.txt │ │ └── nilerr │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── nilerr.go │ ├── hashicorp │ │ ├── errwrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── errwrap.go │ │ ├── go-checkpoint │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── check.go │ │ │ ├── telemetry.go │ │ │ └── versions.go │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ ├── doc.go │ │ │ └── handlers.go │ │ ├── go-cty │ │ │ ├── LICENSE │ │ │ └── cty │ │ │ │ ├── capsule.go │ │ │ │ ├── capsule_ops.go │ │ │ │ ├── collection.go │ │ │ │ ├── convert │ │ │ │ ├── compare_types.go │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_capsule.go │ │ │ │ ├── conversion_collection.go │ │ │ │ ├── conversion_dynamic.go │ │ │ │ ├── conversion_object.go │ │ │ │ ├── conversion_primitive.go │ │ │ │ ├── conversion_tuple.go │ │ │ │ ├── doc.go │ │ │ │ ├── mismatch_msg.go │ │ │ │ ├── public.go │ │ │ │ ├── sort_types.go │ │ │ │ └── unify.go │ │ │ │ ├── doc.go │ │ │ │ ├── element_iterator.go │ │ │ │ ├── error.go │ │ │ │ ├── gob.go │ │ │ │ ├── gocty │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── in.go │ │ │ │ ├── out.go │ │ │ │ └── type_implied.go │ │ │ │ ├── helper.go │ │ │ │ ├── json.go │ │ │ │ ├── json │ │ │ │ ├── doc.go │ │ │ │ ├── marshal.go │ │ │ │ ├── simple.go │ │ │ │ ├── type.go │ │ │ │ ├── type_implied.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── value.go │ │ │ │ ├── list_type.go │ │ │ │ ├── map_type.go │ │ │ │ ├── marks.go │ │ │ │ ├── msgpack │ │ │ │ ├── doc.go │ │ │ │ ├── dynamic.go │ │ │ │ ├── infinity.go │ │ │ │ ├── marshal.go │ │ │ │ ├── type_implied.go │ │ │ │ ├── unknown.go │ │ │ │ └── unmarshal.go │ │ │ │ ├── null.go │ │ │ │ ├── object_type.go │ │ │ │ ├── path.go │ │ │ │ ├── path_set.go │ │ │ │ ├── primitive_type.go │ │ │ │ ├── set │ │ │ │ ├── gob.go │ │ │ │ ├── iterator.go │ │ │ │ ├── ops.go │ │ │ │ ├── rules.go │ │ │ │ └── set.go │ │ │ │ ├── set_helper.go │ │ │ │ ├── set_internals.go │ │ │ │ ├── set_type.go │ │ │ │ ├── tuple_type.go │ │ │ │ ├── type.go │ │ │ │ ├── type_conform.go │ │ │ │ ├── types_to_register.go │ │ │ │ ├── unknown.go │ │ │ │ ├── unknown_as_null.go │ │ │ │ ├── value.go │ │ │ │ ├── value_init.go │ │ │ │ ├── value_ops.go │ │ │ │ └── walk.go │ │ ├── go-hclog │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorize_unix.go │ │ │ ├── colorize_windows.go │ │ │ ├── context.go │ │ │ ├── exclude.go │ │ │ ├── global.go │ │ │ ├── interceptlogger.go │ │ │ ├── intlogger.go │ │ │ ├── logger.go │ │ │ ├── nulllogger.go │ │ │ ├── stacktrace.go │ │ │ ├── stdlog.go │ │ │ └── writer.go │ │ ├── go-immutable-radix │ │ │ └── v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── edges.go │ │ │ │ ├── iradix.go │ │ │ │ ├── iter.go │ │ │ │ ├── node.go │ │ │ │ ├── path_iter.go │ │ │ │ ├── raw_iter.go │ │ │ │ └── reverse_iter.go │ │ ├── go-multierror │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── append.go │ │ │ ├── flatten.go │ │ │ ├── format.go │ │ │ ├── group.go │ │ │ ├── multierror.go │ │ │ ├── prefix.go │ │ │ └── sort.go │ │ ├── go-plugin │ │ │ ├── .gitignore │ │ │ ├── .go-version │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── buf.gen.yaml │ │ │ ├── buf.yaml │ │ │ ├── client.go │ │ │ ├── constants.go │ │ │ ├── discover.go │ │ │ ├── error.go │ │ │ ├── grpc_broker.go │ │ │ ├── grpc_client.go │ │ │ ├── grpc_controller.go │ │ │ ├── grpc_server.go │ │ │ ├── grpc_stdio.go │ │ │ ├── internal │ │ │ │ ├── cmdrunner │ │ │ │ │ ├── addr_translator.go │ │ │ │ │ ├── cmd_reattach.go │ │ │ │ │ ├── cmd_runner.go │ │ │ │ │ ├── notes_unix.go │ │ │ │ │ ├── notes_windows.go │ │ │ │ │ ├── process.go │ │ │ │ │ ├── process_posix.go │ │ │ │ │ └── process_windows.go │ │ │ │ ├── grpcmux │ │ │ │ │ ├── blocked_client_listener.go │ │ │ │ │ ├── blocked_server_listener.go │ │ │ │ │ ├── grpc_client_muxer.go │ │ │ │ │ ├── grpc_muxer.go │ │ │ │ │ └── grpc_server_muxer.go │ │ │ │ └── plugin │ │ │ │ │ ├── grpc_broker.pb.go │ │ │ │ │ ├── grpc_broker.proto │ │ │ │ │ ├── grpc_broker_grpc.pb.go │ │ │ │ │ ├── grpc_controller.pb.go │ │ │ │ │ ├── grpc_controller.proto │ │ │ │ │ ├── grpc_controller_grpc.pb.go │ │ │ │ │ ├── grpc_stdio.pb.go │ │ │ │ │ ├── grpc_stdio.proto │ │ │ │ │ └── grpc_stdio_grpc.pb.go │ │ │ ├── log_entry.go │ │ │ ├── mtls.go │ │ │ ├── mux_broker.go │ │ │ ├── plugin.go │ │ │ ├── process.go │ │ │ ├── protocol.go │ │ │ ├── rpc_client.go │ │ │ ├── rpc_server.go │ │ │ ├── runner │ │ │ │ └── runner.go │ │ │ ├── server.go │ │ │ ├── server_mux.go │ │ │ ├── stream.go │ │ │ └── testing.go │ │ ├── go-retryablehttp │ │ │ ├── .gitignore │ │ │ ├── .go-version │ │ │ ├── CHANGELOG.md │ │ │ ├── CODEOWNERS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cert_error_go119.go │ │ │ ├── cert_error_go120.go │ │ │ ├── client.go │ │ │ └── roundtripper.go │ │ ├── go-uuid │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── uuid.go │ │ ├── go-version │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── constraint.go │ │ │ ├── version.go │ │ │ └── version_collection.go │ │ ├── golang-lru │ │ │ └── v2 │ │ │ │ ├── LICENSE │ │ │ │ ├── internal │ │ │ │ └── list.go │ │ │ │ └── simplelru │ │ │ │ ├── LICENSE_list │ │ │ │ ├── lru.go │ │ │ │ └── lru_interface.go │ │ ├── hc-install │ │ │ ├── .copywrite.hcl │ │ │ ├── .go-version │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── catalog-info.yaml │ │ │ ├── checkpoint │ │ │ │ └── latest_version.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── fs │ │ │ │ ├── any_version.go │ │ │ │ ├── exact_version.go │ │ │ │ ├── fs.go │ │ │ │ ├── fs_unix.go │ │ │ │ ├── fs_windows.go │ │ │ │ └── version.go │ │ │ ├── installer.go │ │ │ ├── internal │ │ │ │ ├── build │ │ │ │ │ ├── get_go_version.go │ │ │ │ │ ├── go_build.go │ │ │ │ │ ├── go_is_installed.go │ │ │ │ │ └── install_go_version.go │ │ │ │ ├── httpclient │ │ │ │ │ └── httpclient.go │ │ │ │ ├── pubkey │ │ │ │ │ └── pubkey.go │ │ │ │ ├── releasesjson │ │ │ │ │ ├── checksum_downloader.go │ │ │ │ │ ├── downloader.go │ │ │ │ │ ├── product_version.go │ │ │ │ │ └── releases.go │ │ │ │ ├── src │ │ │ │ │ └── src.go │ │ │ │ └── validators │ │ │ │ │ └── validators.go │ │ │ ├── product │ │ │ │ ├── consul.go │ │ │ │ ├── nomad.go │ │ │ │ ├── packer.go │ │ │ │ ├── product.go │ │ │ │ ├── terraform.go │ │ │ │ └── vault.go │ │ │ ├── releases │ │ │ │ ├── enterprise.go │ │ │ │ ├── exact_version.go │ │ │ │ ├── latest_version.go │ │ │ │ ├── releases.go │ │ │ │ └── versions.go │ │ │ ├── src │ │ │ │ └── src.go │ │ │ └── version │ │ │ │ ├── VERSION │ │ │ │ └── version.go │ │ ├── hcl │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── decoder.go │ │ │ ├── hcl.go │ │ │ ├── hcl │ │ │ │ ├── ast │ │ │ │ │ ├── ast.go │ │ │ │ │ └── walk.go │ │ │ │ ├── parser │ │ │ │ │ ├── error.go │ │ │ │ │ └── parser.go │ │ │ │ ├── printer │ │ │ │ │ ├── nodes.go │ │ │ │ │ └── printer.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ ├── strconv │ │ │ │ │ └── quote.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ ├── json │ │ │ │ ├── parser │ │ │ │ │ ├── flatten.go │ │ │ │ │ └── parser.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ └── v2 │ │ │ │ ├── .copywrite.hcl │ │ │ │ ├── .go-version │ │ │ │ ├── .golangci.yaml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── diagnostic.go │ │ │ │ ├── diagnostic_text.go │ │ │ │ ├── diagnostic_typeparams.go │ │ │ │ ├── didyoumean.go │ │ │ │ ├── doc.go │ │ │ │ ├── eval_context.go │ │ │ │ ├── expr_call.go │ │ │ │ ├── expr_list.go │ │ │ │ ├── expr_map.go │ │ │ │ ├── expr_unwrap.go │ │ │ │ ├── ext │ │ │ │ └── customdecode │ │ │ │ │ ├── README.md │ │ │ │ │ ├── customdecode.go │ │ │ │ │ └── expression_type.go │ │ │ │ ├── hclsyntax │ │ │ │ ├── diagnostics.go │ │ │ │ ├── didyoumean.go │ │ │ │ ├── doc.go │ │ │ │ ├── expression.go │ │ │ │ ├── expression_ops.go │ │ │ │ ├── expression_template.go │ │ │ │ ├── expression_vars.go │ │ │ │ ├── file.go │ │ │ │ ├── generate.go │ │ │ │ ├── keywords.go │ │ │ │ ├── navigation.go │ │ │ │ ├── node.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_template.go │ │ │ │ ├── parser_traversal.go │ │ │ │ ├── peeker.go │ │ │ │ ├── public.go │ │ │ │ ├── scan_string_lit.go │ │ │ │ ├── scan_string_lit.rl │ │ │ │ ├── scan_tokens.go │ │ │ │ ├── scan_tokens.rl │ │ │ │ ├── spec.md │ │ │ │ ├── structure.go │ │ │ │ ├── structure_at_pos.go │ │ │ │ ├── token.go │ │ │ │ ├── token_type_string.go │ │ │ │ ├── unicode2ragel.rb │ │ │ │ ├── unicode_derived.rl │ │ │ │ ├── variables.go │ │ │ │ └── walk.go │ │ │ │ ├── merged.go │ │ │ │ ├── ops.go │ │ │ │ ├── pos.go │ │ │ │ ├── pos_scanner.go │ │ │ │ ├── schema.go │ │ │ │ ├── spec.md │ │ │ │ ├── static_expr.go │ │ │ │ ├── structure.go │ │ │ │ ├── structure_at_pos.go │ │ │ │ ├── tools.go │ │ │ │ ├── traversal.go │ │ │ │ └── traversal_for_expr.go │ │ ├── logutils │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── level.go │ │ ├── terraform-exec │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ │ └── version │ │ │ │ │ └── version.go │ │ │ └── tfexec │ │ │ │ ├── apply.go │ │ │ │ ├── cmd.go │ │ │ │ ├── cmd_default.go │ │ │ │ ├── cmd_linux.go │ │ │ │ ├── destroy.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── fmt.go │ │ │ │ ├── force_unlock.go │ │ │ │ ├── get.go │ │ │ │ ├── graph.go │ │ │ │ ├── import.go │ │ │ │ ├── init.go │ │ │ │ ├── metadata_functions.go │ │ │ │ ├── options.go │ │ │ │ ├── output.go │ │ │ │ ├── plan.go │ │ │ │ ├── providers_lock.go │ │ │ │ ├── providers_schema.go │ │ │ │ ├── refresh.go │ │ │ │ ├── show.go │ │ │ │ ├── state_mv.go │ │ │ │ ├── state_pull.go │ │ │ │ ├── state_push.go │ │ │ │ ├── state_rm.go │ │ │ │ ├── taint.go │ │ │ │ ├── terraform.go │ │ │ │ ├── test.go │ │ │ │ ├── untaint.go │ │ │ │ ├── upgrade012.go │ │ │ │ ├── upgrade013.go │ │ │ │ ├── validate.go │ │ │ │ ├── version.go │ │ │ │ ├── workspace_delete.go │ │ │ │ ├── workspace_list.go │ │ │ │ ├── workspace_new.go │ │ │ │ ├── workspace_select.go │ │ │ │ └── workspace_show.go │ │ ├── terraform-json │ │ │ ├── .copywrite.hcl │ │ │ ├── .gitignore │ │ │ ├── .go-version │ │ │ ├── CODEOWNERS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── action.go │ │ │ ├── catalog-info.yaml │ │ │ ├── checks.go │ │ │ ├── config.go │ │ │ ├── expression.go │ │ │ ├── logging.go │ │ │ ├── logging_generic.go │ │ │ ├── logging_query.go │ │ │ ├── logging_types.go │ │ │ ├── metadata.go │ │ │ ├── plan.go │ │ │ ├── schemas.go │ │ │ ├── state.go │ │ │ ├── tfjson.go │ │ │ ├── validate.go │ │ │ └── version.go │ │ ├── terraform-plugin-go │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ │ └── logging │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── environment_variables.go │ │ │ │ │ ├── keys.go │ │ │ │ │ ├── protocol.go │ │ │ │ │ ├── protocol_data.go │ │ │ │ │ └── provider.go │ │ │ ├── tfprotov5 │ │ │ │ ├── action.go │ │ │ │ ├── action_schema.go │ │ │ │ ├── client_capabilities.go │ │ │ │ ├── data_source.go │ │ │ │ ├── deferred.go │ │ │ │ ├── diagnostic.go │ │ │ │ ├── doc.go │ │ │ │ ├── dynamic_value.go │ │ │ │ ├── ephemeral_resource.go │ │ │ │ ├── function.go │ │ │ │ ├── function_error.go │ │ │ │ ├── internal │ │ │ │ │ ├── diag │ │ │ │ │ │ ├── diagnostics.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── fromproto │ │ │ │ │ │ ├── action.go │ │ │ │ │ │ ├── client_capabilities.go │ │ │ │ │ │ ├── data_source.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dynamic_value.go │ │ │ │ │ │ ├── ephemeral_resource.go │ │ │ │ │ │ ├── function.go │ │ │ │ │ │ ├── list_resource.go │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ ├── raw_state.go │ │ │ │ │ │ ├── resource.go │ │ │ │ │ │ └── resource_identity_data.go │ │ │ │ │ ├── funcerr │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── function_error.go │ │ │ │ │ ├── tf5serverlogging │ │ │ │ │ │ ├── client_capabilities.go │ │ │ │ │ │ ├── context_keys.go │ │ │ │ │ │ ├── deferred.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── downstream_request.go │ │ │ │ │ │ └── server_capabilities.go │ │ │ │ │ ├── tfplugin5 │ │ │ │ │ │ ├── tfplugin5.pb.go │ │ │ │ │ │ ├── tfplugin5.proto │ │ │ │ │ │ └── tfplugin5_grpc.pb.go │ │ │ │ │ └── toproto │ │ │ │ │ │ ├── action.go │ │ │ │ │ │ ├── action_schema.go │ │ │ │ │ │ ├── attribute_path.go │ │ │ │ │ │ ├── data_source.go │ │ │ │ │ │ ├── deferred.go │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dynamic_value.go │ │ │ │ │ │ ├── ephemeral_resource.go │ │ │ │ │ │ ├── function.go │ │ │ │ │ │ ├── function_error.go │ │ │ │ │ │ ├── list_resource.go │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ ├── resource.go │ │ │ │ │ │ ├── resource_identity_data.go │ │ │ │ │ │ ├── resource_identity_schema.go │ │ │ │ │ │ ├── schema.go │ │ │ │ │ │ ├── server_capabilities.go │ │ │ │ │ │ ├── string_kind.go │ │ │ │ │ │ └── timestamp.go │ │ │ │ ├── list_resource.go │ │ │ │ ├── provider.go │ │ │ │ ├── resource.go │ │ │ │ ├── resource_identity_data.go │ │ │ │ ├── resource_identity_schema.go │ │ │ │ ├── schema.go │ │ │ │ ├── server_capabilities.go │ │ │ │ ├── state.go │ │ │ │ ├── string_kind.go │ │ │ │ └── tf5server │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── server.go │ │ │ ├── tfprotov6 │ │ │ │ ├── action.go │ │ │ │ ├── action_schema.go │ │ │ │ ├── client_capabilities.go │ │ │ │ ├── data_source.go │ │ │ │ ├── deferred.go │ │ │ │ ├── diagnostic.go │ │ │ │ ├── doc.go │ │ │ │ ├── dynamic_value.go │ │ │ │ ├── ephemeral_resource.go │ │ │ │ ├── function.go │ │ │ │ ├── function_error.go │ │ │ │ ├── internal │ │ │ │ │ ├── diag │ │ │ │ │ │ ├── diagnostics.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── fromproto │ │ │ │ │ │ ├── action.go │ │ │ │ │ │ ├── client_capabilities.go │ │ │ │ │ │ ├── data_source.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dynamic_value.go │ │ │ │ │ │ ├── ephemeral_resource.go │ │ │ │ │ │ ├── function.go │ │ │ │ │ │ ├── list_resource.go │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ ├── raw_state.go │ │ │ │ │ │ ├── resource.go │ │ │ │ │ │ └── resource_identity_data.go │ │ │ │ │ ├── funcerr │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── function_error.go │ │ │ │ │ ├── tf6serverlogging │ │ │ │ │ │ ├── client_capabilities.go │ │ │ │ │ │ ├── context_keys.go │ │ │ │ │ │ ├── deferred.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── downstream_request.go │ │ │ │ │ │ └── server_capabilities.go │ │ │ │ │ ├── tfplugin6 │ │ │ │ │ │ ├── tfplugin6.pb.go │ │ │ │ │ │ ├── tfplugin6.proto │ │ │ │ │ │ └── tfplugin6_grpc.pb.go │ │ │ │ │ └── toproto │ │ │ │ │ │ ├── action.go │ │ │ │ │ │ ├── action_schema.go │ │ │ │ │ │ ├── attribute_path.go │ │ │ │ │ │ ├── data_source.go │ │ │ │ │ │ ├── deferred.go │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dynamic_value.go │ │ │ │ │ │ ├── ephemeral_resource.go │ │ │ │ │ │ ├── function.go │ │ │ │ │ │ ├── function_error.go │ │ │ │ │ │ ├── list_resource.go │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ ├── resource.go │ │ │ │ │ │ ├── resource_identity_data.go │ │ │ │ │ │ ├── resource_identity_schema.go │ │ │ │ │ │ ├── schema.go │ │ │ │ │ │ ├── server_capabilities.go │ │ │ │ │ │ ├── string_kind.go │ │ │ │ │ │ └── timestamp.go │ │ │ │ ├── list_resource.go │ │ │ │ ├── provider.go │ │ │ │ ├── resource.go │ │ │ │ ├── resource_identity_data.go │ │ │ │ ├── resource_identity_schema.go │ │ │ │ ├── schema.go │ │ │ │ ├── server_capabilities.go │ │ │ │ ├── state.go │ │ │ │ ├── string_kind.go │ │ │ │ └── tf6server │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── server.go │ │ │ └── tftypes │ │ │ │ ├── attribute_path.go │ │ │ │ ├── attribute_path_error.go │ │ │ │ ├── diff.go │ │ │ │ ├── doc.go │ │ │ │ ├── list.go │ │ │ │ ├── map.go │ │ │ │ ├── object.go │ │ │ │ ├── primitive.go │ │ │ │ ├── set.go │ │ │ │ ├── tuple.go │ │ │ │ ├── type.go │ │ │ │ ├── unknown_value.go │ │ │ │ ├── value.go │ │ │ │ ├── value_equal.go │ │ │ │ ├── value_json.go │ │ │ │ ├── value_msgpack.go │ │ │ │ ├── value_walk.go │ │ │ │ └── walk.go │ │ ├── terraform-plugin-log │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ │ ├── fieldutils │ │ │ │ │ └── field_maps.go │ │ │ │ ├── hclogutils │ │ │ │ │ ├── args.go │ │ │ │ │ └── logger_options.go │ │ │ │ └── logging │ │ │ │ │ ├── filtering.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── provider.go │ │ │ │ │ ├── sdk.go │ │ │ │ │ └── sink.go │ │ │ ├── tflog │ │ │ │ ├── doc.go │ │ │ │ ├── options.go │ │ │ │ ├── provider.go │ │ │ │ └── subsystem.go │ │ │ └── tfsdklog │ │ │ │ ├── doc.go │ │ │ │ ├── levels.go │ │ │ │ ├── options.go │ │ │ │ ├── sdk.go │ │ │ │ ├── sink.go │ │ │ │ └── subsystem.go │ │ ├── terraform-plugin-sdk │ │ │ └── v2 │ │ │ │ ├── LICENSE │ │ │ │ ├── diag │ │ │ │ ├── diagnostic.go │ │ │ │ └── helpers.go │ │ │ │ ├── helper │ │ │ │ ├── acctest │ │ │ │ │ └── random.go │ │ │ │ ├── customdiff │ │ │ │ │ ├── compose.go │ │ │ │ │ ├── computed.go │ │ │ │ │ ├── condition.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── force_new.go │ │ │ │ │ └── validate.go │ │ │ │ ├── id │ │ │ │ │ └── id.go │ │ │ │ ├── logging │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── logging_http_transport.go │ │ │ │ │ └── transport.go │ │ │ │ ├── resource │ │ │ │ │ ├── aliases.go │ │ │ │ │ ├── environment_variables.go │ │ │ │ │ ├── json.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── state_shim.go │ │ │ │ │ ├── testcase_providers.go │ │ │ │ │ ├── testcase_validate.go │ │ │ │ │ ├── testing.go │ │ │ │ │ ├── testing_config.go │ │ │ │ │ ├── testing_new.go │ │ │ │ │ ├── testing_new_config.go │ │ │ │ │ ├── testing_new_import_state.go │ │ │ │ │ ├── testing_new_refresh_state.go │ │ │ │ │ ├── testing_sets.go │ │ │ │ │ ├── teststep_providers.go │ │ │ │ │ └── teststep_validate.go │ │ │ │ ├── retry │ │ │ │ │ ├── error.go │ │ │ │ │ ├── state.go │ │ │ │ │ └── wait.go │ │ │ │ ├── schema │ │ │ │ │ ├── README.md │ │ │ │ │ ├── context.go │ │ │ │ │ ├── core_schema.go │ │ │ │ │ ├── data_source_resource_shim.go │ │ │ │ │ ├── deferred.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── field_reader.go │ │ │ │ │ ├── field_reader_config.go │ │ │ │ │ ├── field_reader_diff.go │ │ │ │ │ ├── field_reader_map.go │ │ │ │ │ ├── field_reader_multi.go │ │ │ │ │ ├── field_writer.go │ │ │ │ │ ├── field_writer_map.go │ │ │ │ │ ├── getsource_string.go │ │ │ │ │ ├── grpc_provider.go │ │ │ │ │ ├── identity_data.go │ │ │ │ │ ├── json.go │ │ │ │ │ ├── provider.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── resource_data.go │ │ │ │ │ ├── resource_data_get_source.go │ │ │ │ │ ├── resource_diff.go │ │ │ │ │ ├── resource_identity.go │ │ │ │ │ ├── resource_importer.go │ │ │ │ │ ├── resource_timeout.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── serialize.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── shims.go │ │ │ │ │ ├── testing.go │ │ │ │ │ ├── unknown.go │ │ │ │ │ ├── valuetype.go │ │ │ │ │ ├── valuetype_string.go │ │ │ │ │ └── write_only.go │ │ │ │ ├── structure │ │ │ │ │ ├── expand_json.go │ │ │ │ │ ├── flatten_json.go │ │ │ │ │ ├── normalize_json.go │ │ │ │ │ └── suppress_json_diff.go │ │ │ │ └── validation │ │ │ │ │ ├── float.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── list.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── strings.go │ │ │ │ │ ├── testing.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── uuid.go │ │ │ │ │ ├── web.go │ │ │ │ │ └── write_only.go │ │ │ │ ├── internal │ │ │ │ ├── addrs │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── instance_key.go │ │ │ │ │ ├── module.go │ │ │ │ │ └── module_instance.go │ │ │ │ ├── configs │ │ │ │ │ ├── configschema │ │ │ │ │ │ ├── coerce_value.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── empty_value.go │ │ │ │ │ │ ├── implied_type.go │ │ │ │ │ │ ├── nestingmode_string.go │ │ │ │ │ │ └── schema.go │ │ │ │ │ └── hcl2shim │ │ │ │ │ │ ├── flatmap.go │ │ │ │ │ │ ├── paths.go │ │ │ │ │ │ ├── values.go │ │ │ │ │ │ └── values_equiv.go │ │ │ │ ├── helper │ │ │ │ │ └── hashcode │ │ │ │ │ │ └── hashcode.go │ │ │ │ ├── logging │ │ │ │ │ ├── context.go │ │ │ │ │ ├── environment_variables.go │ │ │ │ │ ├── helper_resource.go │ │ │ │ │ ├── helper_schema.go │ │ │ │ │ └── keys.go │ │ │ │ ├── plans │ │ │ │ │ └── objchange │ │ │ │ │ │ └── normalize_obj.go │ │ │ │ ├── plugin │ │ │ │ │ └── convert │ │ │ │ │ │ ├── diagnostics.go │ │ │ │ │ │ ├── schema.go │ │ │ │ │ │ └── value.go │ │ │ │ ├── plugintest │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── environment_variables.go │ │ │ │ │ ├── guard.go │ │ │ │ │ ├── helper.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── working_dir.go │ │ │ │ └── tfdiags │ │ │ │ │ ├── config_traversals.go │ │ │ │ │ ├── contextual.go │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ ├── diagnostic_base.go │ │ │ │ │ ├── diagnostics.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── severity_string.go │ │ │ │ │ └── simple_warning.go │ │ │ │ ├── meta │ │ │ │ └── meta.go │ │ │ │ ├── plugin │ │ │ │ ├── debug.go │ │ │ │ └── serve.go │ │ │ │ └── terraform │ │ │ │ ├── diff.go │ │ │ │ ├── instancetype.go │ │ │ │ ├── instancetype_string.go │ │ │ │ ├── resource.go │ │ │ │ ├── resource_address.go │ │ │ │ ├── resource_mode.go │ │ │ │ ├── resource_mode_string.go │ │ │ │ ├── resource_provider.go │ │ │ │ ├── schemas.go │ │ │ │ ├── state.go │ │ │ │ ├── state_filter.go │ │ │ │ └── util.go │ │ ├── terraform-registry-address │ │ │ ├── .copywrite.hcl │ │ │ ├── .go-version │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── component.go │ │ │ ├── component_package.go │ │ │ ├── errors.go │ │ │ ├── module.go │ │ │ ├── module_package.go │ │ │ └── provider.go │ │ ├── terraform-svchost │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── label_iter.go │ │ │ └── svchost.go │ │ └── yamux │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── addr.go │ │ │ ├── const.go │ │ │ ├── mux.go │ │ │ ├── session.go │ │ │ ├── spec.md │ │ │ ├── stream.go │ │ │ └── util.go │ ├── hexops │ │ └── gotextdiff │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── diff.go │ │ │ ├── myers │ │ │ └── diff.go │ │ │ ├── span │ │ │ ├── parse.go │ │ │ ├── span.go │ │ │ ├── token.go │ │ │ ├── token111.go │ │ │ ├── token112.go │ │ │ ├── uri.go │ │ │ └── utf16.go │ │ │ └── unified.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ └── trap_windows.go │ ├── jgautheron │ │ └── goconst │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── parser.go │ │ │ └── visitor.go │ ├── jingyugao │ │ └── rowserrcheck │ │ │ ├── LICENSE │ │ │ └── passes │ │ │ └── rowserr │ │ │ └── rowserr.go │ ├── jjti │ │ └── go-spancheck │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── go.work │ │ │ ├── go.work.sum │ │ │ └── spancheck.go │ ├── julz │ │ └── importas │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── config.go │ │ │ └── flags.go │ ├── karamaru-alpha │ │ └── copyloopvar │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── copyloopvar.go │ ├── kisielk │ │ └── errcheck │ │ │ ├── LICENSE │ │ │ └── errcheck │ │ │ ├── analyzer.go │ │ │ ├── embedded_walker.go │ │ │ ├── embedded_walker_121.go │ │ │ ├── embedded_walker_122.go │ │ │ ├── errcheck.go │ │ │ └── excludes.go │ ├── kkHAIKE │ │ └── contextcheck │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── contextcheck.go │ ├── kulti │ │ └── thelper │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── analyzer │ │ │ ├── analyzer.go │ │ │ └── report.go │ ├── kunwardeep │ │ └── paralleltest │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── paralleltest │ │ │ └── paralleltest.go │ ├── lasiar │ │ └── canonicalheader │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── .goreleaser.yaml │ │ │ ├── LICENCE │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── constant_string.go │ │ │ ├── initialism.go │ │ │ ├── literal_string.go │ │ │ └── makefile │ ├── ldez │ │ ├── exptostd │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── exptostd.go │ │ │ └── readme.md │ │ ├── gomoddirectives │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── gomoddirectives.go │ │ │ ├── module.go │ │ │ └── readme.md │ │ ├── grignotin │ │ │ ├── LICENSE │ │ │ ├── goenv │ │ │ │ ├── goenv.go │ │ │ │ └── names.go │ │ │ └── gomod │ │ │ │ └── gomod.go │ │ ├── tagliatelle │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── converter.go │ │ │ ├── readme.md │ │ │ └── tagliatelle.go │ │ └── usetesting │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── readme.md │ │ │ ├── report.go │ │ │ └── usetesting.go │ ├── leonklingele │ │ └── grouper │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── analyzer │ │ │ ├── analyzer.go │ │ │ ├── config.go │ │ │ ├── consts │ │ │ ├── analyzer.go │ │ │ └── config.go │ │ │ ├── flags.go │ │ │ ├── globals │ │ │ └── analyzer.go │ │ │ ├── imports │ │ │ ├── analyzer.go │ │ │ └── config.go │ │ │ ├── types │ │ │ ├── analyzer.go │ │ │ └── config.go │ │ │ └── vars │ │ │ ├── analyzer.go │ │ │ └── config.go │ ├── lucasb-eyer │ │ └── go-colorful │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorgens.go │ │ │ ├── colors.go │ │ │ ├── happy_palettegen.go │ │ │ ├── hexcolor.go │ │ │ ├── hsluv-snapshot-rev4.json │ │ │ ├── hsluv.go │ │ │ ├── soft_palettegen.go │ │ │ └── warm_palettegen.go │ ├── macabu │ │ └── inamedparam │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ └── inamedparam.go │ ├── magiconair │ │ └── properties │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── integrate.go │ │ │ ├── lex.go │ │ │ ├── load.go │ │ │ ├── parser.go │ │ │ ├── properties.go │ │ │ └── rangecheck.go │ ├── manuelarte │ │ ├── embeddedstructfieldcheck │ │ │ ├── LICENSE │ │ │ ├── analyzer │ │ │ │ └── analyzer.go │ │ │ └── internal │ │ │ │ ├── diag.go │ │ │ │ └── structanalyzer.go │ │ └── funcorder │ │ │ ├── LICENSE │ │ │ ├── analyzer │ │ │ └── analyzer.go │ │ │ └── internal │ │ │ ├── astutils.go │ │ │ ├── diag.go │ │ │ ├── features.go │ │ │ ├── file_processor.go │ │ │ ├── struct_constructor.go │ │ │ └── structholder.go │ ├── maratori │ │ ├── testableexamples │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ │ └── testableexamples │ │ │ │ └── testableexamples.go │ │ └── testpackage │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── testpackage │ │ │ └── testpackage.go │ ├── matoous │ │ └── godox │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .revive.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── godox.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ ├── go.test.sh │ │ │ └── noncolorable.go │ │ ├── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ └── isatty_windows.go │ │ └── go-runewidth │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── runewidth.go │ │ │ ├── runewidth_appengine.go │ │ │ ├── runewidth_js.go │ │ │ ├── runewidth_posix.go │ │ │ ├── runewidth_table.go │ │ │ └── runewidth_windows.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pbutil │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── mgechev │ │ └── revive │ │ │ ├── LICENSE │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── formatter │ │ │ ├── checkstyle.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── friendly.go │ │ │ ├── json.go │ │ │ ├── ndjson.go │ │ │ ├── plain.go │ │ │ ├── sarif.go │ │ │ ├── severity.go │ │ │ ├── stylish.go │ │ │ └── unix.go │ │ │ ├── internal │ │ │ ├── astutils │ │ │ │ └── ast_utils.go │ │ │ ├── ifelse │ │ │ │ ├── args.go │ │ │ │ ├── branch.go │ │ │ │ ├── branch_kind.go │ │ │ │ ├── chain.go │ │ │ │ ├── doc.go │ │ │ │ ├── func.go │ │ │ │ ├── rule.go │ │ │ │ └── target.go │ │ │ ├── rule │ │ │ │ └── name.go │ │ │ └── typeparams │ │ │ │ └── typeparams.go │ │ │ ├── lint │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── failure.go │ │ │ ├── file.go │ │ │ ├── filefilter.go │ │ │ ├── formatter.go │ │ │ ├── linter.go │ │ │ ├── name.go │ │ │ ├── package.go │ │ │ └── rule.go │ │ │ ├── logging │ │ │ └── logger.go │ │ │ └── rule │ │ │ ├── add_constant.go │ │ │ ├── argument_limit.go │ │ │ ├── atomic.go │ │ │ ├── banned_characters.go │ │ │ ├── bare_return.go │ │ │ ├── blank_imports.go │ │ │ ├── bool_literal_in_expr.go │ │ │ ├── call_to_gc.go │ │ │ ├── cognitive_complexity.go │ │ │ ├── comment_spacings.go │ │ │ ├── comments_density.go │ │ │ ├── confusing_naming.go │ │ │ ├── confusing_results.go │ │ │ ├── constant_logical_expr.go │ │ │ ├── context_as_argument.go │ │ │ ├── context_keys_type.go │ │ │ ├── cyclomatic.go │ │ │ ├── datarace.go │ │ │ ├── deep_exit.go │ │ │ ├── defer.go │ │ │ ├── doc.go │ │ │ ├── dot_imports.go │ │ │ ├── duplicated_imports.go │ │ │ ├── early_return.go │ │ │ ├── empty_block.go │ │ │ ├── empty_lines.go │ │ │ ├── enforce_map_style.go │ │ │ ├── enforce_repeated_arg_type_style.go │ │ │ ├── enforce_slice_style.go │ │ │ ├── enforce_switch_style.go │ │ │ ├── error_naming.go │ │ │ ├── error_return.go │ │ │ ├── error_strings.go │ │ │ ├── errorf.go │ │ │ ├── exported.go │ │ │ ├── file_header.go │ │ │ ├── file_length_limit.go │ │ │ ├── filename_format.go │ │ │ ├── flag_param.go │ │ │ ├── function_length.go │ │ │ ├── function_result_limit.go │ │ │ ├── get_return.go │ │ │ ├── identical_branches.go │ │ │ ├── identical_ifelseif_branches.go │ │ │ ├── identical_ifelseif_condition.go │ │ │ ├── identical_switch_branches.go │ │ │ ├── identical_switch_conditions.go │ │ │ ├── if_return.go │ │ │ ├── import_alias_naming.go │ │ │ ├── import_shadowing.go │ │ │ ├── imports_blocklist.go │ │ │ ├── increment_decrement.go │ │ │ ├── indent_error_flow.go │ │ │ ├── line_length_limit.go │ │ │ ├── max_control_nesting.go │ │ │ ├── max_public_structs.go │ │ │ ├── modifies_param.go │ │ │ ├── modifies_value_receiver.go │ │ │ ├── nested_structs.go │ │ │ ├── optimize_operands_order.go │ │ │ ├── package_comments.go │ │ │ ├── package_directory_mismatch.go │ │ │ ├── range.go │ │ │ ├── range_val_address.go │ │ │ ├── range_val_in_closure.go │ │ │ ├── receiver_naming.go │ │ │ ├── redefines_builtin_id.go │ │ │ ├── redundant_build_tag.go │ │ │ ├── redundant_import_alias.go │ │ │ ├── redundant_test_main_exit.go │ │ │ ├── string_format.go │ │ │ ├── string_of_int.go │ │ │ ├── struct_tag.go │ │ │ ├── superfluous_else.go │ │ │ ├── time_date.go │ │ │ ├── time_equal.go │ │ │ ├── time_naming.go │ │ │ ├── unchecked_type_assertion.go │ │ │ ├── unconditional_recursion.go │ │ │ ├── unexported_naming.go │ │ │ ├── unexported_return.go │ │ │ ├── unhandled_error.go │ │ │ ├── unnecessary_format.go │ │ │ ├── unnecessary_stmt.go │ │ │ ├── unreachable_code.go │ │ │ ├── unsecure_url_scheme.go │ │ │ ├── unused_param.go │ │ │ ├── unused_receiver.go │ │ │ ├── use_any.go │ │ │ ├── use_errors_new.go │ │ │ ├── use_fmt_print.go │ │ │ ├── use_waitgroup_go.go │ │ │ ├── useless_break.go │ │ │ ├── useless_fallthrough.go │ │ │ ├── utils.go │ │ │ ├── var_declarations.go │ │ │ ├── var_naming.go │ │ │ └── waitgroup_by_value.go │ ├── mitchellh │ │ ├── copystructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── copier_time.go │ │ │ └── copystructure.go │ │ ├── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── homedir.go │ │ ├── go-testing-interface │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── testing.go │ │ ├── go-wordwrap │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── wordwrap.go │ │ ├── mapstructure │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ └── mapstructure.go │ │ └── reflectwalk │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── location.go │ │ │ ├── location_string.go │ │ │ └── reflectwalk.go │ ├── moricho │ │ └── tparallel │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yaml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── pkg │ │ │ ├── ssafunc │ │ │ │ └── ssafunc.go │ │ │ └── ssainstr │ │ │ │ └── ssainstr.go │ │ │ ├── testmap.go │ │ │ └── tparallel.go │ ├── muesli │ │ └── termenv │ │ │ ├── .gitignore │ │ │ ├── .golangci-soft.yml │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ansi_compat.md │ │ │ ├── ansicolors.go │ │ │ ├── color.go │ │ │ ├── constants_linux.go │ │ │ ├── constants_solaris.go │ │ │ ├── constants_unix.go │ │ │ ├── constants_zos.go │ │ │ ├── copy.go │ │ │ ├── hyperlink.go │ │ │ ├── notification.go │ │ │ ├── output.go │ │ │ ├── profile.go │ │ │ ├── screen.go │ │ │ ├── style.go │ │ │ ├── templatehelper.go │ │ │ ├── termenv.go │ │ │ ├── termenv_other.go │ │ │ ├── termenv_posix.go │ │ │ ├── termenv_solaris.go │ │ │ ├── termenv_unix.go │ │ │ └── termenv_windows.go │ ├── nakabonne │ │ └── nestif │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── nestif.go │ ├── nishanths │ │ ├── exhaustive │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── comment.go │ │ │ ├── comment_go121.go │ │ │ ├── comment_pre_go121.go │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── enum.go │ │ │ ├── exhaustive.go │ │ │ ├── fact.go │ │ │ ├── flag.go │ │ │ ├── map.go │ │ │ └── switch.go │ │ └── predeclared │ │ │ ├── LICENSE │ │ │ └── passes │ │ │ └── predeclared │ │ │ ├── go18.go │ │ │ ├── pre_go18.go │ │ │ └── predeclared.go │ ├── nunnatsa │ │ └── ginkgolinter │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ ├── expression │ │ │ │ ├── actual │ │ │ │ │ ├── actual.go │ │ │ │ │ ├── actualarg.go │ │ │ │ │ ├── asyncactual.go │ │ │ │ │ ├── asyncfuncarg.go │ │ │ │ │ └── comparisonAsserion.go │ │ │ │ ├── expression.go │ │ │ │ ├── matcher │ │ │ │ │ ├── bematchers.go │ │ │ │ │ ├── benumericmatcher.go │ │ │ │ │ ├── equalmatcher.go │ │ │ │ │ ├── errormatchers.go │ │ │ │ │ ├── lenmatchers.go │ │ │ │ │ ├── matcher.go │ │ │ │ │ ├── matcherinfo.go │ │ │ │ │ ├── matcherwithnest.go │ │ │ │ │ └── multiplematchers.go │ │ │ │ └── value │ │ │ │ │ └── value.go │ │ │ ├── formatter │ │ │ │ └── formatter.go │ │ │ ├── ginkgohandler │ │ │ │ ├── dothandler.go │ │ │ │ ├── ginkgoinfo.go │ │ │ │ ├── handler.go │ │ │ │ ├── handling.go │ │ │ │ └── namehandler.go │ │ │ ├── ginkgoinfo │ │ │ │ └── ginkgoinfo.go │ │ │ ├── gomegahandler │ │ │ │ ├── dothandler.go │ │ │ │ ├── handler.go │ │ │ │ └── namedhandler.go │ │ │ ├── gomegainfo │ │ │ │ └── gomegainfo.go │ │ │ ├── intervals │ │ │ │ └── intervals.go │ │ │ ├── reports │ │ │ │ └── report-builder.go │ │ │ ├── reverseassertion │ │ │ │ └── reverse_assertion.go │ │ │ ├── rules │ │ │ │ ├── assertiondescriptionrule.go │ │ │ │ ├── asyncfunccallrule.go │ │ │ │ ├── asyncsucceedrule.go │ │ │ │ ├── asynctimeintervalsrule.go │ │ │ │ ├── caprule.go │ │ │ │ ├── comparepointerrule.go │ │ │ │ ├── comparisonrule.go │ │ │ │ ├── doublenegativerule.go │ │ │ │ ├── equalboolrule.go │ │ │ │ ├── equaldifferenttypesrule.go │ │ │ │ ├── equalnilrule.go │ │ │ │ ├── errorequalnilrule.go │ │ │ │ ├── forceexpecttorule.go │ │ │ │ ├── havelen0.go │ │ │ │ ├── haveoccurredrule.go │ │ │ │ ├── lenrule.go │ │ │ │ ├── matcheronlyrule.go │ │ │ │ ├── matcherrorrule.go │ │ │ │ ├── missingassertionrule.go │ │ │ │ ├── nilcomparerule.go │ │ │ │ ├── rule.go │ │ │ │ ├── simplify_not.go │ │ │ │ └── succeedrule.go │ │ │ └── typecheck │ │ │ │ └── interfaces.go │ │ │ ├── linter │ │ │ └── ginkgo_linter.go │ │ │ └── version │ │ │ └── version.go │ ├── oklog │ │ └── run │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── actors.go │ │ │ └── group.go │ ├── pelletier │ │ └── go-toml │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── azure-pipelines.yml │ │ │ ├── benchmark.sh │ │ │ ├── doc.go │ │ │ ├── example-crlf.toml │ │ │ ├── example.toml │ │ │ ├── fuzz.go │ │ │ ├── fuzz.sh │ │ │ ├── keysparsing.go │ │ │ ├── lexer.go │ │ │ ├── localtime.go │ │ │ ├── marshal.go │ │ │ ├── marshal_OrderPreserve_test.toml │ │ │ ├── marshal_test.toml │ │ │ ├── parser.go │ │ │ ├── position.go │ │ │ ├── token.go │ │ │ ├── toml.go │ │ │ ├── tomlpub.go │ │ │ ├── tomltree_create.go │ │ │ ├── tomltree_write.go │ │ │ ├── tomltree_writepub.go │ │ │ └── v2 │ │ │ ├── .dockerignore │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.toml │ │ │ ├── .goreleaser.yaml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── ci.sh │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ ├── characters │ │ │ │ ├── ascii.go │ │ │ │ └── utf8.go │ │ │ ├── danger │ │ │ │ ├── danger.go │ │ │ │ └── typeid.go │ │ │ └── tracker │ │ │ │ ├── key.go │ │ │ │ ├── seen.go │ │ │ │ └── tracker.go │ │ │ ├── localtime.go │ │ │ ├── marshaler.go │ │ │ ├── strict.go │ │ │ ├── toml.abnf │ │ │ ├── types.go │ │ │ ├── unmarshaler.go │ │ │ └── unstable │ │ │ ├── ast.go │ │ │ ├── builder.go │ │ │ ├── doc.go │ │ │ ├── kind.go │ │ │ ├── parser.go │ │ │ ├── scanner.go │ │ │ └── unmarshaler.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── polyfloyd │ │ └── go-errorlint │ │ │ ├── LICENSE │ │ │ └── errorlint │ │ │ ├── allowed.go │ │ │ ├── analysis.go │ │ │ ├── lint.go │ │ │ ├── options.go │ │ │ └── printf.go │ ├── prometheus │ │ ├── client_golang │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── build_info_collector.go │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── go_collector_go116.go │ │ │ │ ├── go_collector_go117.go │ │ │ │ ├── histogram.go │ │ │ │ ├── internal │ │ │ │ ├── go_runtime_metrics.go │ │ │ │ └── metric.go │ │ │ │ ├── labels.go │ │ │ │ ├── metric.go │ │ │ │ ├── observer.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── process_collector_other.go │ │ │ │ ├── process_collector_windows.go │ │ │ │ ├── registry.go │ │ │ │ ├── summary.go │ │ │ │ ├── testutil │ │ │ │ └── promlint │ │ │ │ │ └── promlint.go │ │ │ │ ├── timer.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.go │ │ │ │ └── wrap.go │ │ ├── client_model │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── go │ │ │ │ └── metrics.pb.go │ │ ├── common │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── expfmt │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── openmetrics_create.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ ├── internal │ │ │ │ └── bitbucket.org │ │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── README.txt │ │ │ │ │ └── autoneg.go │ │ │ └── model │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ └── value.go │ │ └── procfs │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── Makefile.common │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── arp.go │ │ │ ├── buddyinfo.go │ │ │ ├── cmdline.go │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_armx.go │ │ │ ├── cpuinfo_mipsx.go │ │ │ ├── cpuinfo_others.go │ │ │ ├── cpuinfo_ppcx.go │ │ │ ├── cpuinfo_riscvx.go │ │ │ ├── cpuinfo_s390x.go │ │ │ ├── cpuinfo_x86.go │ │ │ ├── crypto.go │ │ │ ├── doc.go │ │ │ ├── fixtures.ttar │ │ │ ├── fs.go │ │ │ ├── fscache.go │ │ │ ├── internal │ │ │ ├── fs │ │ │ │ └── fs.go │ │ │ └── util │ │ │ │ ├── parse.go │ │ │ │ ├── readfile.go │ │ │ │ ├── sysreadfile.go │ │ │ │ ├── sysreadfile_compat.go │ │ │ │ └── valueparser.go │ │ │ ├── ipvs.go │ │ │ ├── kernel_random.go │ │ │ ├── loadavg.go │ │ │ ├── mdstat.go │ │ │ ├── meminfo.go │ │ │ ├── mountinfo.go │ │ │ ├── mountstats.go │ │ │ ├── net_conntrackstat.go │ │ │ ├── net_dev.go │ │ │ ├── net_ip_socket.go │ │ │ ├── net_protocols.go │ │ │ ├── net_sockstat.go │ │ │ ├── net_softnet.go │ │ │ ├── net_tcp.go │ │ │ ├── net_udp.go │ │ │ ├── net_unix.go │ │ │ ├── netstat.go │ │ │ ├── proc.go │ │ │ ├── proc_cgroup.go │ │ │ ├── proc_environ.go │ │ │ ├── proc_fdinfo.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_maps.go │ │ │ ├── proc_ns.go │ │ │ ├── proc_psi.go │ │ │ ├── proc_smaps.go │ │ │ ├── proc_stat.go │ │ │ ├── proc_status.go │ │ │ ├── schedstat.go │ │ │ ├── slab.go │ │ │ ├── stat.go │ │ │ ├── swaps.go │ │ │ ├── ttar │ │ │ ├── vm.go │ │ │ ├── xfrm.go │ │ │ └── zoneinfo.go │ ├── quasilyte │ │ ├── go-ruleguard │ │ │ ├── LICENSE │ │ │ ├── dsl │ │ │ │ ├── LICENSE │ │ │ │ ├── bundle.go │ │ │ │ ├── do.go │ │ │ │ ├── dsl.go │ │ │ │ ├── filter.go │ │ │ │ ├── internal.go │ │ │ │ └── types │ │ │ │ │ ├── ext.go │ │ │ │ │ ├── type_impl.go │ │ │ │ │ └── types.go │ │ │ ├── internal │ │ │ │ ├── goenv │ │ │ │ │ └── goenv.go │ │ │ │ ├── golist │ │ │ │ │ └── golist.go │ │ │ │ ├── xsrcimporter │ │ │ │ │ └── xsrcimporter.go │ │ │ │ └── xtypes │ │ │ │ │ └── xtypes.go │ │ │ └── ruleguard │ │ │ │ ├── ast_walker.go │ │ │ │ ├── bundle.go │ │ │ │ ├── engine.go │ │ │ │ ├── filters.go │ │ │ │ ├── go_version.go │ │ │ │ ├── gorule.go │ │ │ │ ├── goutil │ │ │ │ ├── goutil.go │ │ │ │ └── resolve.go │ │ │ │ ├── importer.go │ │ │ │ ├── ir │ │ │ │ ├── filter_op.gen.go │ │ │ │ ├── gen_filter_op.go │ │ │ │ └── ir.go │ │ │ │ ├── ir_loader.go │ │ │ │ ├── ir_utils.go │ │ │ │ ├── irconv │ │ │ │ └── irconv.go │ │ │ │ ├── libdsl.go │ │ │ │ ├── match_data.go │ │ │ │ ├── nodepath.go │ │ │ │ ├── profiling │ │ │ │ ├── no_labels.go │ │ │ │ └── with_labels.go │ │ │ │ ├── quasigo │ │ │ │ ├── compile.go │ │ │ │ ├── debug_info.go │ │ │ │ ├── disasm.go │ │ │ │ ├── env.go │ │ │ │ ├── eval.go │ │ │ │ ├── gen_opcodes.go │ │ │ │ ├── opcode_string.go │ │ │ │ ├── opcodes.gen.go │ │ │ │ ├── quasigo.go │ │ │ │ ├── stdlib │ │ │ │ │ ├── qfmt │ │ │ │ │ │ └── qfmt.go │ │ │ │ │ ├── qstrconv │ │ │ │ │ │ └── qstrconv.go │ │ │ │ │ └── qstrings │ │ │ │ │ │ └── qstrings.go │ │ │ │ └── utils.go │ │ │ │ ├── ruleguard.go │ │ │ │ ├── runner.go │ │ │ │ ├── textmatch │ │ │ │ ├── compile.go │ │ │ │ ├── matchers.go │ │ │ │ └── textmatch.go │ │ │ │ ├── typematch │ │ │ │ ├── patternop_string.go │ │ │ │ └── typematch.go │ │ │ │ └── utils.go │ │ ├── gogrep │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── compile.go │ │ │ ├── compile_import.go │ │ │ ├── gen_operations.go │ │ │ ├── gogrep.go │ │ │ ├── instructions.go │ │ │ ├── internal │ │ │ │ └── stdinfo │ │ │ │ │ └── stdinfo.go │ │ │ ├── match.go │ │ │ ├── nodetag │ │ │ │ └── nodetag.go │ │ │ ├── operation_string.go │ │ │ ├── operations.gen.go │ │ │ ├── parse.go │ │ │ └── slices.go │ │ ├── regex │ │ │ └── syntax │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── ast.go │ │ │ │ ├── errors.go │ │ │ │ ├── lexer.go │ │ │ │ ├── operation.go │ │ │ │ ├── operation_string.go │ │ │ │ ├── parser.go │ │ │ │ ├── pos.go │ │ │ │ ├── tokenkind_string.go │ │ │ │ └── utils.go │ │ └── stdinfo │ │ │ ├── LICENSE │ │ │ ├── stdinfo.go │ │ │ └── stdinfo_gen.go │ ├── raeperd │ │ └── recvcheck │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── analyzer.go │ ├── rivo │ │ └── uniseg │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── eastasianwidth.go │ │ │ ├── emojipresentation.go │ │ │ ├── gen_breaktest.go │ │ │ ├── gen_properties.go │ │ │ ├── grapheme.go │ │ │ ├── graphemeproperties.go │ │ │ ├── graphemerules.go │ │ │ ├── line.go │ │ │ ├── lineproperties.go │ │ │ ├── linerules.go │ │ │ ├── properties.go │ │ │ ├── sentence.go │ │ │ ├── sentenceproperties.go │ │ │ ├── sentencerules.go │ │ │ ├── step.go │ │ │ ├── width.go │ │ │ ├── word.go │ │ │ ├── wordproperties.go │ │ │ └── wordrules.go │ ├── rogpeppe │ │ └── go-internal │ │ │ ├── LICENSE │ │ │ ├── diff │ │ │ └── diff.go │ │ │ ├── internal │ │ │ └── syscall │ │ │ │ └── windows │ │ │ │ ├── mksyscall.go │ │ │ │ ├── psapi_windows.go │ │ │ │ ├── reparse_windows.go │ │ │ │ ├── security_windows.go │ │ │ │ ├── symlink_windows.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── sysdll │ │ │ │ └── sysdll.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── lockedfile │ │ │ ├── internal │ │ │ │ └── filelock │ │ │ │ │ ├── filelock.go │ │ │ │ │ ├── filelock_fcntl.go │ │ │ │ │ ├── filelock_other.go │ │ │ │ │ ├── filelock_unix.go │ │ │ │ │ └── filelock_windows.go │ │ │ ├── lockedfile.go │ │ │ ├── lockedfile_filelock.go │ │ │ ├── lockedfile_plan9.go │ │ │ └── mutex.go │ │ │ └── robustio │ │ │ ├── robustio.go │ │ │ ├── robustio_darwin.go │ │ │ ├── robustio_flaky.go │ │ │ ├── robustio_other.go │ │ │ └── robustio_windows.go │ ├── ryancurrah │ │ └── gomodguard │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.goreleaser │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── allowed.go │ │ │ ├── blocked.go │ │ │ ├── issue.go │ │ │ └── processor.go │ ├── ryanrolds │ │ └── sqlclosecheck │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── analyzer │ │ │ └── analyzer.go │ ├── sanposhiho │ │ └── wastedassign │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── wastedassign.go │ ├── santhosh-tekuri │ │ └── jsonschema │ │ │ └── v6 │ │ │ ├── .gitmodules │ │ │ ├── .golangci.yml │ │ │ ├── .pre-commit-hooks.yaml │ │ │ ├── .swp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compiler.go │ │ │ ├── content.go │ │ │ ├── draft.go │ │ │ ├── format.go │ │ │ ├── go.work │ │ │ ├── go.work.sum │ │ │ ├── kind │ │ │ └── kind.go │ │ │ ├── loader.go │ │ │ ├── metaschemas │ │ │ ├── draft-04 │ │ │ │ └── schema │ │ │ ├── draft-06 │ │ │ │ └── schema │ │ │ ├── draft-07 │ │ │ │ └── schema │ │ │ └── draft │ │ │ │ ├── 2019-09 │ │ │ │ ├── meta │ │ │ │ │ ├── applicator │ │ │ │ │ ├── content │ │ │ │ │ ├── core │ │ │ │ │ ├── format │ │ │ │ │ ├── meta-data │ │ │ │ │ └── validation │ │ │ │ └── schema │ │ │ │ └── 2020-12 │ │ │ │ ├── meta │ │ │ │ ├── applicator │ │ │ │ ├── content │ │ │ │ ├── core │ │ │ │ ├── format-annotation │ │ │ │ ├── format-assertion │ │ │ │ ├── meta-data │ │ │ │ ├── unevaluated │ │ │ │ └── validation │ │ │ │ └── schema │ │ │ ├── objcompiler.go │ │ │ ├── output.go │ │ │ ├── position.go │ │ │ ├── root.go │ │ │ ├── roots.go │ │ │ ├── schema.go │ │ │ ├── util.go │ │ │ ├── validator.go │ │ │ └── vocab.go │ ├── sashamelentyev │ │ ├── interfacebloat │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ │ └── analyzer │ │ │ │ └── analyzer.go │ │ └── usestdlibvars │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── analyzer │ │ │ ├── analyzer.go │ │ │ └── internal │ │ │ └── mapping │ │ │ └── mapping.go │ ├── securego │ │ └── gosec │ │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RULES.md │ │ │ ├── USERS.md │ │ │ ├── action.yml │ │ │ ├── analyzer.go │ │ │ ├── analyzers │ │ │ ├── analyzers_set.go │ │ │ ├── analyzerslist.go │ │ │ ├── conversion_overflow.go │ │ │ ├── hardcoded_nonce.go │ │ │ ├── slice_bounds.go │ │ │ └── util.go │ │ │ ├── call_list.go │ │ │ ├── config.go │ │ │ ├── cosign.pub │ │ │ ├── cwe │ │ │ ├── data.go │ │ │ └── types.go │ │ │ ├── entrypoint.sh │ │ │ ├── errors.go │ │ │ ├── helpers.go │ │ │ ├── import_tracker.go │ │ │ ├── install.sh │ │ │ ├── issue │ │ │ └── issue.go │ │ │ ├── perf-diff.sh │ │ │ ├── renovate.json │ │ │ ├── report.go │ │ │ ├── resolve.go │ │ │ ├── rule.go │ │ │ └── rules │ │ │ ├── archive.go │ │ │ ├── bind.go │ │ │ ├── blocklist.go │ │ │ ├── decompression_bomb.go │ │ │ ├── directory_traversal.go │ │ │ ├── errors.go │ │ │ ├── fileperms.go │ │ │ ├── hardcoded_credentials.go │ │ │ ├── http_serve.go │ │ │ ├── implicit_aliasing.go │ │ │ ├── integer_overflow.go │ │ │ ├── pprof.go │ │ │ ├── rand.go │ │ │ ├── readfile.go │ │ │ ├── rsa.go │ │ │ ├── rulelist.go │ │ │ ├── slowloris.go │ │ │ ├── sql.go │ │ │ ├── ssh.go │ │ │ ├── ssrf.go │ │ │ ├── subproc.go │ │ │ ├── tempfiles.go │ │ │ ├── templates.go │ │ │ ├── tls.go │ │ │ ├── tls_config.go │ │ │ ├── unsafe.go │ │ │ ├── weakcrypto.go │ │ │ ├── weakcryptohash.go │ │ │ └── weakdepricatedcryptohash.go │ ├── shurcooL │ │ ├── githubv4 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── deprecated.go │ │ │ ├── doc.go │ │ │ ├── enum.go │ │ │ ├── githubv4.go │ │ │ ├── input.go │ │ │ └── scalar.go │ │ └── graphql │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── graphql.go │ │ │ ├── ident │ │ │ └── ident.go │ │ │ ├── internal │ │ │ └── jsonutil │ │ │ │ └── graphql.go │ │ │ ├── query.go │ │ │ └── scalar.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── buffer_pool.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── sivchari │ │ └── containedctx │ │ │ ├── .golangci.yml │ │ │ ├── LICENCE │ │ │ ├── README.md │ │ │ └── containedctx.go │ ├── sonatard │ │ └── noctx │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── noctx.go │ │ │ └── types.go │ ├── sourcegraph │ │ └── go-diff │ │ │ ├── LICENSE │ │ │ └── diff │ │ │ ├── diff.go │ │ │ ├── doc.go │ │ │ ├── parse.go │ │ │ ├── print.go │ │ │ └── reader_util.go │ ├── spf13 │ │ ├── afero │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── afero.go │ │ │ ├── appveyor.yml │ │ │ ├── basepath.go │ │ │ ├── cacheOnReadFs.go │ │ │ ├── const_bsds.go │ │ │ ├── const_win_unix.go │ │ │ ├── copyOnWriteFs.go │ │ │ ├── httpFs.go │ │ │ ├── internal │ │ │ │ └── common │ │ │ │ │ └── adapters.go │ │ │ ├── iofs.go │ │ │ ├── ioutil.go │ │ │ ├── lstater.go │ │ │ ├── match.go │ │ │ ├── mem │ │ │ │ ├── dir.go │ │ │ │ ├── dirmap.go │ │ │ │ └── file.go │ │ │ ├── memmap.go │ │ │ ├── os.go │ │ │ ├── path.go │ │ │ ├── readonlyfs.go │ │ │ ├── regexpfs.go │ │ │ ├── symlink.go │ │ │ ├── unionFile.go │ │ │ └── util.go │ │ ├── cast │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cast.go │ │ │ ├── caste.go │ │ │ └── timeformattype_string.go │ │ ├── cobra │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .mailmap │ │ │ ├── CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── active_help.go │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completionsV2.go │ │ │ ├── cobra.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_win.go │ │ │ ├── completions.go │ │ │ ├── fish_completions.go │ │ │ ├── flag_groups.go │ │ │ ├── powershell_completions.go │ │ │ ├── shell_completions.go │ │ │ └── zsh_completions.go │ │ ├── jwalterweatherman │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── default_notepad.go │ │ │ ├── log_counter.go │ │ │ └── notepad.go │ │ ├── pflag │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_func.go │ │ │ ├── bool_slice.go │ │ │ ├── bytes.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── duration_slice.go │ │ │ ├── errors.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float32_slice.go │ │ │ ├── float64.go │ │ │ ├── float64_slice.go │ │ │ ├── func.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int32_slice.go │ │ │ ├── int64.go │ │ │ ├── int64_slice.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_slice.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── string_to_int.go │ │ │ ├── string_to_int64.go │ │ │ ├── string_to_string.go │ │ │ ├── text.go │ │ │ ├── time.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ │ └── viper │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── TROUBLESHOOTING.md │ │ │ ├── experimental_logger.go │ │ │ ├── flags.go │ │ │ ├── fs.go │ │ │ ├── internal │ │ │ └── encoding │ │ │ │ ├── decoder.go │ │ │ │ ├── dotenv │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ │ ├── encoder.go │ │ │ │ ├── error.go │ │ │ │ ├── hcl │ │ │ │ └── codec.go │ │ │ │ ├── ini │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ │ ├── javaproperties │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ │ ├── json │ │ │ │ └── codec.go │ │ │ │ ├── toml │ │ │ │ ├── codec.go │ │ │ │ └── codec2.go │ │ │ │ └── yaml │ │ │ │ ├── codec.go │ │ │ │ ├── yaml2.go │ │ │ │ └── yaml3.go │ │ │ ├── logger.go │ │ │ ├── util.go │ │ │ ├── viper.go │ │ │ ├── viper_go1_15.go │ │ │ ├── viper_go1_16.go │ │ │ ├── watch.go │ │ │ └── watch_wasm.go │ ├── ssgreg │ │ └── nlreturn │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── nlreturn │ │ │ └── nlreturn.go │ ├── stbenjam │ │ └── no-sprintf-host-port │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── analyzer │ │ │ └── analyzer.go │ ├── stretchr │ │ ├── objx │ │ │ ├── .codeclimate.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Taskfile.yml │ │ │ ├── accessors.go │ │ │ ├── conversions.go │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── mutations.go │ │ │ ├── security.go │ │ │ ├── tests.go │ │ │ ├── type_specific.go │ │ │ ├── type_specific_codegen.go │ │ │ └── value.go │ │ └── testify │ │ │ ├── LICENSE │ │ │ ├── assert │ │ │ ├── assertion_compare.go │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertion_order.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── http_assertions.go │ │ │ └── yaml │ │ │ │ ├── yaml_custom.go │ │ │ │ ├── yaml_default.go │ │ │ │ └── yaml_fail.go │ │ │ └── mock │ │ │ ├── doc.go │ │ │ └── mock.go │ ├── subosito │ │ └── gotenv │ │ │ ├── .env │ │ │ ├── .env.invalid │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── gotenv.go │ ├── tetafro │ │ └── godot │ │ │ ├── .gitignore │ │ │ ├── .godot.yaml │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── checks.go │ │ │ ├── comment.go │ │ │ ├── file.go │ │ │ ├── godot.go │ │ │ └── settings.go │ ├── timakin │ │ └── bodyclose │ │ │ ├── LICENSE │ │ │ └── passes │ │ │ └── bodyclose │ │ │ └── bodyclose.go │ ├── timonwong │ │ └── loggercheck │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── internal │ │ │ ├── checkers │ │ │ │ ├── checker.go │ │ │ │ ├── common.go │ │ │ │ ├── filter.go │ │ │ │ ├── general.go │ │ │ │ ├── printf │ │ │ │ │ └── printf.go │ │ │ │ ├── slog.go │ │ │ │ └── zap.go │ │ │ ├── rules │ │ │ │ └── rules.go │ │ │ ├── sets │ │ │ │ └── string.go │ │ │ └── stringutil │ │ │ │ └── is.go │ │ │ ├── loggercheck.go │ │ │ ├── options.go │ │ │ └── staticrules.go │ ├── tomarrell │ │ └── wrapcheck │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ └── wrapcheck │ │ │ └── wrapcheck.go │ ├── tommy-muehle │ │ └── go-mnd │ │ │ └── v2 │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── action.yml │ │ │ ├── analyzer.go │ │ │ ├── checks │ │ │ ├── argument.go │ │ │ ├── assign.go │ │ │ ├── case.go │ │ │ ├── checks.go │ │ │ ├── condition.go │ │ │ ├── operation.go │ │ │ └── return.go │ │ │ ├── config │ │ │ └── config.go │ │ │ └── entrypoint.sh │ ├── ultraware │ │ ├── funlen │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── funlen.go │ │ └── whitespace │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── whitespace.go │ ├── uudashr │ │ ├── gocognit │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── gocognit.go │ │ │ ├── recv.go │ │ │ └── recv_pre118.go │ │ └── iface │ │ │ ├── LICENSE │ │ │ ├── identical │ │ │ ├── doc.go │ │ │ └── identical.go │ │ │ ├── internal │ │ │ └── directive │ │ │ │ └── directive.go │ │ │ ├── opaque │ │ │ ├── doc.go │ │ │ └── opaque.go │ │ │ ├── unexported │ │ │ ├── doc.go │ │ │ └── unexported.go │ │ │ └── unused │ │ │ ├── doc.go │ │ │ └── unused.go │ ├── vmihailenco │ │ ├── msgpack │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── codes │ │ │ │ └── codes.go │ │ │ ├── decode.go │ │ │ ├── decode_map.go │ │ │ ├── decode_number.go │ │ │ ├── decode_query.go │ │ │ ├── decode_slice.go │ │ │ ├── decode_string.go │ │ │ ├── decode_value.go │ │ │ ├── encode.go │ │ │ ├── encode_map.go │ │ │ ├── encode_number.go │ │ │ ├── encode_slice.go │ │ │ ├── encode_value.go │ │ │ ├── ext.go │ │ │ ├── msgpack.go │ │ │ ├── tag.go │ │ │ ├── time.go │ │ │ ├── types.go │ │ │ └── v5 │ │ │ │ ├── .prettierrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── commitlint.config.js │ │ │ │ ├── decode.go │ │ │ │ ├── decode_map.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_query.go │ │ │ │ ├── decode_slice.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_typgen.go │ │ │ │ ├── decode_value.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_map.go │ │ │ │ ├── encode_number.go │ │ │ │ ├── encode_slice.go │ │ │ │ ├── encode_value.go │ │ │ │ ├── ext.go │ │ │ │ ├── intern.go │ │ │ │ ├── msgpack.go │ │ │ │ ├── msgpcode │ │ │ │ └── msgpcode.go │ │ │ │ ├── package.json │ │ │ │ ├── safe.go │ │ │ │ ├── time.go │ │ │ │ ├── types.go │ │ │ │ ├── unsafe.go │ │ │ │ └── version.go │ │ └── tagparser │ │ │ └── v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── internal │ │ │ ├── parser │ │ │ │ └── parser.go │ │ │ ├── safe.go │ │ │ └── unsafe.go │ │ │ └── tagparser.go │ ├── xen0n │ │ └── gosmopolitan │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── README.zh-Hans.md │ │ │ └── lib.go │ ├── xo │ │ └── terminfo │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── caps.go │ │ │ ├── capvals.go │ │ │ ├── color.go │ │ │ ├── dec.go │ │ │ ├── load.go │ │ │ ├── param.go │ │ │ ├── stack.go │ │ │ └── terminfo.go │ ├── yagipy │ │ └── maintidx │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── maintidx.go │ │ │ ├── pkg │ │ │ ├── cyc │ │ │ │ └── cyc.go │ │ │ └── halstvol │ │ │ │ ├── halstvol.go │ │ │ │ └── handle.go │ │ │ └── visitor.go │ ├── yeya24 │ │ └── promlinter │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── promlinter.go │ ├── ykadowak │ │ └── zerologlint │ │ │ ├── .goreleaser.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── zerologlint.go │ └── zclconf │ │ └── go-cty │ │ ├── LICENSE │ │ └── cty │ │ ├── capsule.go │ │ ├── capsule_ops.go │ │ ├── collection.go │ │ ├── convert │ │ ├── compare_types.go │ │ ├── conversion.go │ │ ├── conversion_capsule.go │ │ ├── conversion_collection.go │ │ ├── conversion_dynamic.go │ │ ├── conversion_object.go │ │ ├── conversion_primitive.go │ │ ├── conversion_tuple.go │ │ ├── doc.go │ │ ├── mismatch_msg.go │ │ ├── public.go │ │ ├── sort_types.go │ │ └── unify.go │ │ ├── ctymarks │ │ ├── doc.go │ │ └── wrangle.go │ │ ├── ctystrings │ │ ├── doc.go │ │ ├── normalize.go │ │ └── prefix.go │ │ ├── doc.go │ │ ├── element_iterator.go │ │ ├── error.go │ │ ├── function │ │ ├── argument.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── function.go │ │ ├── stdlib │ │ │ ├── bool.go │ │ │ ├── bytes.go │ │ │ ├── collection.go │ │ │ ├── conversion.go │ │ │ ├── csv.go │ │ │ ├── datetime.go │ │ │ ├── datetime_rfc3339.go │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── format_fsm.go │ │ │ ├── format_fsm.rl │ │ │ ├── general.go │ │ │ ├── json.go │ │ │ ├── number.go │ │ │ ├── regexp.go │ │ │ ├── sequence.go │ │ │ ├── set.go │ │ │ ├── string.go │ │ │ └── string_replace.go │ │ └── unpredictable.go │ │ ├── gocty │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── in.go │ │ ├── out.go │ │ └── type_implied.go │ │ ├── helper.go │ │ ├── json.go │ │ ├── json │ │ ├── doc.go │ │ ├── marshal.go │ │ ├── simple.go │ │ ├── type.go │ │ ├── type_implied.go │ │ ├── unmarshal.go │ │ └── value.go │ │ ├── list_type.go │ │ ├── map_type.go │ │ ├── marks.go │ │ ├── marks_wrangle.go │ │ ├── null.go │ │ ├── object_type.go │ │ ├── path.go │ │ ├── path_set.go │ │ ├── primitive_type.go │ │ ├── set │ │ ├── iterator.go │ │ ├── ops.go │ │ ├── rules.go │ │ └── set.go │ │ ├── set_helper.go │ │ ├── set_internals.go │ │ ├── set_type.go │ │ ├── tuple_type.go │ │ ├── type.go │ │ ├── type_conform.go │ │ ├── unknown.go │ │ ├── unknown_as_null.go │ │ ├── unknown_refinement.go │ │ ├── value.go │ │ ├── value_init.go │ │ ├── value_ops.go │ │ ├── value_range.go │ │ └── walk.go ├── gitlab.com │ └── bosi │ │ └── decorder │ │ ├── .gitignore │ │ ├── .gitlab-ci.params.yml │ │ ├── .gitlab-ci.yml │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── analyzer.go │ │ └── renovate.json ├── go-simpler.org │ ├── musttag │ │ ├── .golangci.yaml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── builtins.go │ │ ├── musttag.go │ │ └── utils.go │ └── sloglint │ │ ├── .golangci.yaml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── sloglint.go ├── go.augendre.info │ ├── arangolint │ │ ├── LICENSE │ │ └── pkg │ │ │ └── analyzer │ │ │ └── analyzer.go │ └── fatcontext │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.go ├── go.uber.org │ ├── automaxprocs │ │ ├── LICENSE │ │ ├── internal │ │ │ ├── cgroups │ │ │ │ ├── cgroup.go │ │ │ │ ├── cgroups.go │ │ │ │ ├── cgroups2.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── mountpoint.go │ │ │ │ └── subsys.go │ │ │ └── runtime │ │ │ │ ├── cpu_quota_linux.go │ │ │ │ ├── cpu_quota_unsupported.go │ │ │ │ └── runtime.go │ │ └── maxprocs │ │ │ ├── maxprocs.go │ │ │ └── version.go │ ├── multierr │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── error.go │ │ ├── error_post_go120.go │ │ └── error_pre_go120.go │ └── zap │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .readme.tmpl │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── array.go │ │ ├── buffer │ │ ├── buffer.go │ │ └── pool.go │ │ ├── checklicense.sh │ │ ├── config.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── error.go │ │ ├── field.go │ │ ├── flag.go │ │ ├── glide.yaml │ │ ├── global.go │ │ ├── http_handler.go │ │ ├── internal │ │ ├── bufferpool │ │ │ └── bufferpool.go │ │ ├── color │ │ │ └── color.go │ │ ├── exit │ │ │ └── exit.go │ │ ├── level_enabler.go │ │ ├── pool │ │ │ └── pool.go │ │ └── stacktrace │ │ │ └── stack.go │ │ ├── level.go │ │ ├── logger.go │ │ ├── options.go │ │ ├── sink.go │ │ ├── sugar.go │ │ ├── time.go │ │ ├── writer.go │ │ └── zapcore │ │ ├── buffered_write_syncer.go │ │ ├── clock.go │ │ ├── console_encoder.go │ │ ├── core.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── entry.go │ │ ├── error.go │ │ ├── field.go │ │ ├── hook.go │ │ ├── increase_level.go │ │ ├── json_encoder.go │ │ ├── lazy_with.go │ │ ├── level.go │ │ ├── level_strings.go │ │ ├── marshaler.go │ │ ├── memory_encoder.go │ │ ├── reflected_encoder.go │ │ ├── sampler.go │ │ ├── tee.go │ │ └── write_syncer.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── argon2 │ │ │ ├── argon2.go │ │ │ ├── blake2b.go │ │ │ ├── blamka_amd64.go │ │ │ ├── blamka_amd64.s │ │ │ ├── blamka_generic.go │ │ │ └── blamka_ref.go │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2x.go │ │ │ ├── go125.go │ │ │ └── register.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── cast5 │ │ │ └── cast5.go │ │ ├── chacha20 │ │ │ ├── chacha_arm64.go │ │ │ ├── chacha_arm64.s │ │ │ ├── chacha_generic.go │ │ │ ├── chacha_noasm.go │ │ │ ├── chacha_ppc64x.go │ │ │ ├── chacha_ppc64x.s │ │ │ ├── chacha_s390x.go │ │ │ ├── chacha_s390x.s │ │ │ └── xor.go │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── asn1 │ │ │ │ └── asn1.go │ │ │ ├── builder.go │ │ │ └── string.go │ │ ├── curve25519 │ │ │ └── curve25519.go │ │ ├── hkdf │ │ │ └── hkdf.go │ │ ├── internal │ │ │ ├── alias │ │ │ │ ├── alias.go │ │ │ │ └── alias_purego.go │ │ │ └── poly1305 │ │ │ │ ├── mac_noasm.go │ │ │ │ ├── poly1305.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_asm.go │ │ │ │ ├── sum_generic.go │ │ │ │ ├── sum_loong64.s │ │ │ │ ├── sum_ppc64x.s │ │ │ │ ├── sum_s390x.go │ │ │ │ └── sum_s390x.s │ │ ├── nacl │ │ │ ├── box │ │ │ │ └── box.go │ │ │ └── secretbox │ │ │ │ └── secretbox.go │ │ ├── pbkdf2 │ │ │ └── pbkdf2.go │ │ ├── salsa20 │ │ │ └── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_amd64.s │ │ │ │ ├── salsa20_noasm.go │ │ │ │ └── salsa20_ref.go │ │ ├── sha3 │ │ │ ├── hashes.go │ │ │ ├── legacy_hash.go │ │ │ ├── legacy_keccakf.go │ │ │ └── shake.go │ │ └── ssh │ │ │ ├── buffer.go │ │ │ ├── certs.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── handshake.go │ │ │ ├── internal │ │ │ └── bcrypt_pbkdf │ │ │ │ └── bcrypt_pbkdf.go │ │ │ ├── kex.go │ │ │ ├── keys.go │ │ │ ├── mac.go │ │ │ ├── messages.go │ │ │ ├── mlkem.go │ │ │ ├── mux.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── ssh_gss.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ └── transport.go │ │ ├── exp │ │ └── typeparams │ │ │ ├── LICENSE │ │ │ ├── common.go │ │ │ ├── normalize.go │ │ │ ├── termlist.go │ │ │ ├── typeparams_go117.go │ │ │ ├── typeparams_go118.go │ │ │ └── typeterm.go │ │ ├── mod │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── lazyregexp │ │ │ │ └── lazyre.go │ │ ├── modfile │ │ │ ├── print.go │ │ │ ├── read.go │ │ │ ├── rule.go │ │ │ └── work.go │ │ ├── module │ │ │ ├── module.go │ │ │ └── pseudo.go │ │ ├── semver │ │ │ └── semver.go │ │ └── sumdb │ │ │ └── dirhash │ │ │ └── hash.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── context │ │ │ └── ctxhttp │ │ │ │ └── ctxhttp.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── ascii.go │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── config.go │ │ │ ├── config_go125.go │ │ │ ├── config_go126.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── gotrack.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ ├── static_table.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── unencrypted.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority_rfc7540.go │ │ │ ├── writesched_priority_rfc9218.go │ │ │ ├── writesched_random.go │ │ │ └── writesched_roundrobin.go │ │ ├── idna │ │ │ ├── go118.go │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── pre_go118.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ ├── trie12.0.0.go │ │ │ ├── trie13.0.0.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── httpcommon │ │ │ │ ├── ascii.go │ │ │ │ ├── headermap.go │ │ │ │ └── request.go │ │ │ └── timeseries │ │ │ │ └── timeseries.go │ │ └── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ └── trace.go │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── deviceauth.go │ │ ├── internal │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── oauth2.go │ │ ├── pkce.go │ │ ├── token.go │ │ └── transport.go │ │ ├── sync │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── errgroup │ │ │ └── errgroup.go │ │ └── semaphore │ │ │ └── semaphore.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cpu │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_x86_gc.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── cpu_darwin_x86.go │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_gc_s390x.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gc_x86.s │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_gccgo_s390x.go │ │ │ ├── cpu_gccgo_x86.c │ │ │ ├── cpu_gccgo_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_linux_arm.go │ │ │ ├── cpu_linux_arm64.go │ │ │ ├── cpu_linux_loong64.go │ │ │ ├── cpu_linux_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_riscv64.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_loong64.go │ │ │ ├── cpu_loong64.s │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_netbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.s │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_other_ppc64x.go │ │ │ ├── cpu_other_riscv64.go │ │ │ ├── cpu_other_x86.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_s390x.s │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_x86.go │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_zos_s390x.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── hwcap_linux.go │ │ │ ├── parse.go │ │ │ ├── proc_cpuinfo_linux.go │ │ │ ├── runtime_auxv.go │ │ │ ├── runtime_auxv_go121.go │ │ │ ├── syscall_aix_gccgo.go │ │ │ ├── syscall_aix_ppc64_gc.go │ │ │ └── syscall_darwin_x86_gc.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_bsd_ppc64.s │ │ │ ├── asm_bsd_riscv64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── auxv.go │ │ │ ├── auxv_unsupported.go │ │ │ ├── bluetooth_linux.go │ │ │ ├── bpxsvc_zos.go │ │ │ ├── bpxsvc_zos.s │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_signed.go │ │ │ ├── ioctl_unsigned.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mmap_nomremap.go │ │ │ ├── mremap.go │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── sockcmsg_zos.go │ │ │ ├── symaddr_zos_s390x.s │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ ├── syscall_hurd.go │ │ │ ├── syscall_hurd_386.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_alarm.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_loong64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_libc.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── sysvshm_linux.go │ │ │ ├── sysvshm_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── vgetrandom_linux.go │ │ │ ├── vgetrandom_unsupported.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_loong64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsymaddr_zos_s390x.s │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_loong64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_386.s │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_loong64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_loong64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mkerrors.bash │ │ │ ├── mkknownfolderids.bash │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── setupapi_windows.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ ├── types_windows_arm64.go │ │ │ ├── zerrors_windows.go │ │ │ ├── zknownfolderids_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── feature │ │ │ └── plural │ │ │ │ ├── common.go │ │ │ │ ├── message.go │ │ │ │ ├── plural.go │ │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── catmsg │ │ │ │ ├── catmsg.go │ │ │ │ ├── codec.go │ │ │ │ └── varint.go │ │ │ ├── format │ │ │ │ ├── format.go │ │ │ │ └── parser.go │ │ │ ├── internal.go │ │ │ ├── language │ │ │ │ ├── common.go │ │ │ │ ├── compact.go │ │ │ │ ├── compact │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── match.go │ │ │ ├── number │ │ │ │ ├── common.go │ │ │ │ ├── decimal.go │ │ │ │ ├── format.go │ │ │ │ ├── number.go │ │ │ │ ├── pattern.go │ │ │ │ ├── roundingmode_string.go │ │ │ │ └── tables.go │ │ │ ├── stringset │ │ │ │ └── set.go │ │ │ └── tag │ │ │ │ └── tag.go │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── message │ │ │ ├── catalog.go │ │ │ ├── catalog │ │ │ │ ├── catalog.go │ │ │ │ ├── dict.go │ │ │ │ ├── go19.go │ │ │ │ └── gopre19.go │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── message.go │ │ │ └── print.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── secure │ │ │ └── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ ├── transform │ │ │ └── transform.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ └── width │ │ │ ├── kind_string.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cmd │ │ └── stringer │ │ │ └── stringer.go │ │ ├── go │ │ ├── analysis │ │ │ ├── analysis.go │ │ │ ├── diagnostic.go │ │ │ ├── doc.go │ │ │ ├── passes │ │ │ │ ├── appends │ │ │ │ │ ├── appends.go │ │ │ │ │ └── doc.go │ │ │ │ ├── asmdecl │ │ │ │ │ └── asmdecl.go │ │ │ │ ├── assign │ │ │ │ │ ├── assign.go │ │ │ │ │ └── doc.go │ │ │ │ ├── atomic │ │ │ │ │ ├── atomic.go │ │ │ │ │ └── doc.go │ │ │ │ ├── atomicalign │ │ │ │ │ └── atomicalign.go │ │ │ │ ├── bools │ │ │ │ │ └── bools.go │ │ │ │ ├── buildssa │ │ │ │ │ └── buildssa.go │ │ │ │ ├── buildtag │ │ │ │ │ └── buildtag.go │ │ │ │ ├── cgocall │ │ │ │ │ ├── cgocall.go │ │ │ │ │ ├── cgocall_go120.go │ │ │ │ │ └── cgocall_go121.go │ │ │ │ ├── composite │ │ │ │ │ ├── composite.go │ │ │ │ │ └── whitelist.go │ │ │ │ ├── copylock │ │ │ │ │ └── copylock.go │ │ │ │ ├── ctrlflow │ │ │ │ │ └── ctrlflow.go │ │ │ │ ├── deepequalerrors │ │ │ │ │ └── deepequalerrors.go │ │ │ │ ├── defers │ │ │ │ │ ├── defers.go │ │ │ │ │ └── doc.go │ │ │ │ ├── directive │ │ │ │ │ └── directive.go │ │ │ │ ├── errorsas │ │ │ │ │ └── errorsas.go │ │ │ │ ├── fieldalignment │ │ │ │ │ └── fieldalignment.go │ │ │ │ ├── findcall │ │ │ │ │ └── findcall.go │ │ │ │ ├── framepointer │ │ │ │ │ └── framepointer.go │ │ │ │ ├── hostport │ │ │ │ │ └── hostport.go │ │ │ │ ├── httpmux │ │ │ │ │ └── httpmux.go │ │ │ │ ├── httpresponse │ │ │ │ │ └── httpresponse.go │ │ │ │ ├── ifaceassert │ │ │ │ │ ├── doc.go │ │ │ │ │ └── ifaceassert.go │ │ │ │ ├── inspect │ │ │ │ │ └── inspect.go │ │ │ │ ├── internal │ │ │ │ │ └── analysisutil │ │ │ │ │ │ └── util.go │ │ │ │ ├── loopclosure │ │ │ │ │ ├── doc.go │ │ │ │ │ └── loopclosure.go │ │ │ │ ├── lostcancel │ │ │ │ │ ├── doc.go │ │ │ │ │ └── lostcancel.go │ │ │ │ ├── modernize │ │ │ │ │ ├── any.go │ │ │ │ │ ├── bloop.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errorsastype.go │ │ │ │ │ ├── fmtappendf.go │ │ │ │ │ ├── forvar.go │ │ │ │ │ ├── maps.go │ │ │ │ │ ├── minmax.go │ │ │ │ │ ├── modernize.go │ │ │ │ │ ├── newexpr.go │ │ │ │ │ ├── omitzero.go │ │ │ │ │ ├── rangeint.go │ │ │ │ │ ├── reflect.go │ │ │ │ │ ├── slices.go │ │ │ │ │ ├── slicescontains.go │ │ │ │ │ ├── slicesdelete.go │ │ │ │ │ ├── sortslice.go │ │ │ │ │ ├── stditerators.go │ │ │ │ │ ├── stringsbuilder.go │ │ │ │ │ ├── stringscutprefix.go │ │ │ │ │ ├── stringsseq.go │ │ │ │ │ ├── testingcontext.go │ │ │ │ │ └── waitgroup.go │ │ │ │ ├── nilfunc │ │ │ │ │ ├── doc.go │ │ │ │ │ └── nilfunc.go │ │ │ │ ├── nilness │ │ │ │ │ ├── doc.go │ │ │ │ │ └── nilness.go │ │ │ │ ├── pkgfact │ │ │ │ │ └── pkgfact.go │ │ │ │ ├── printf │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── printf.go │ │ │ │ │ └── types.go │ │ │ │ ├── reflectvaluecompare │ │ │ │ │ ├── doc.go │ │ │ │ │ └── reflectvaluecompare.go │ │ │ │ ├── shadow │ │ │ │ │ ├── doc.go │ │ │ │ │ └── shadow.go │ │ │ │ ├── shift │ │ │ │ │ ├── dead.go │ │ │ │ │ └── shift.go │ │ │ │ ├── sigchanyzer │ │ │ │ │ ├── doc.go │ │ │ │ │ └── sigchanyzer.go │ │ │ │ ├── slog │ │ │ │ │ ├── doc.go │ │ │ │ │ └── slog.go │ │ │ │ ├── sortslice │ │ │ │ │ └── analyzer.go │ │ │ │ ├── stdmethods │ │ │ │ │ ├── doc.go │ │ │ │ │ └── stdmethods.go │ │ │ │ ├── stdversion │ │ │ │ │ └── stdversion.go │ │ │ │ ├── stringintconv │ │ │ │ │ ├── doc.go │ │ │ │ │ └── string.go │ │ │ │ ├── structtag │ │ │ │ │ └── structtag.go │ │ │ │ ├── testinggoroutine │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── testinggoroutine.go │ │ │ │ │ └── util.go │ │ │ │ ├── tests │ │ │ │ │ ├── doc.go │ │ │ │ │ └── tests.go │ │ │ │ ├── timeformat │ │ │ │ │ ├── doc.go │ │ │ │ │ └── timeformat.go │ │ │ │ ├── unmarshal │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── unreachable │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unreachable.go │ │ │ │ ├── unsafeptr │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unsafeptr.go │ │ │ │ ├── unusedresult │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unusedresult.go │ │ │ │ ├── unusedwrite │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unusedwrite.go │ │ │ │ └── waitgroup │ │ │ │ │ ├── doc.go │ │ │ │ │ └── waitgroup.go │ │ │ └── validate.go │ │ ├── ast │ │ │ ├── astutil │ │ │ │ ├── enclosing.go │ │ │ │ ├── imports.go │ │ │ │ ├── rewrite.go │ │ │ │ └── util.go │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ └── inspector │ │ │ │ ├── cursor.go │ │ │ │ ├── inspector.go │ │ │ │ ├── iter.go │ │ │ │ ├── typeof.go │ │ │ │ └── walk.go │ │ ├── buildutil │ │ │ ├── allpackages.go │ │ │ ├── fakecontext.go │ │ │ ├── overlay.go │ │ │ ├── tags.go │ │ │ └── util.go │ │ ├── cfg │ │ │ ├── builder.go │ │ │ └── cfg.go │ │ ├── gcexportdata │ │ │ ├── gcexportdata.go │ │ │ └── importer.go │ │ ├── internal │ │ │ └── cgo │ │ │ │ ├── cgo.go │ │ │ │ └── cgo_pkgconfig.go │ │ ├── loader │ │ │ ├── doc.go │ │ │ ├── loader.go │ │ │ └── util.go │ │ ├── packages │ │ │ ├── doc.go │ │ │ ├── external.go │ │ │ ├── golist.go │ │ │ ├── golist_overlay.go │ │ │ ├── loadmode_string.go │ │ │ ├── packages.go │ │ │ └── visit.go │ │ ├── ssa │ │ │ ├── TODO │ │ │ ├── block.go │ │ │ ├── blockopt.go │ │ │ ├── builder.go │ │ │ ├── const.go │ │ │ ├── create.go │ │ │ ├── doc.go │ │ │ ├── dom.go │ │ │ ├── emit.go │ │ │ ├── func.go │ │ │ ├── instantiate.go │ │ │ ├── lift.go │ │ │ ├── lvalue.go │ │ │ ├── methods.go │ │ │ ├── mode.go │ │ │ ├── print.go │ │ │ ├── sanity.go │ │ │ ├── source.go │ │ │ ├── ssa.go │ │ │ ├── ssautil │ │ │ │ ├── deprecated.go │ │ │ │ ├── load.go │ │ │ │ ├── switch.go │ │ │ │ └── visit.go │ │ │ ├── subst.go │ │ │ ├── task.go │ │ │ ├── typeset.go │ │ │ ├── util.go │ │ │ └── wrappers.go │ │ └── types │ │ │ ├── objectpath │ │ │ └── objectpath.go │ │ │ └── typeutil │ │ │ ├── callee.go │ │ │ ├── imports.go │ │ │ ├── map.go │ │ │ ├── methodsetcache.go │ │ │ └── ui.go │ │ ├── imports │ │ └── forward.go │ │ └── internal │ │ ├── aliases │ │ ├── aliases.go │ │ └── aliases_go122.go │ │ ├── analysisinternal │ │ ├── analysis.go │ │ ├── extractdoc.go │ │ ├── generated │ │ │ └── generated.go │ │ └── typeindex │ │ │ └── typeindex.go │ │ ├── astutil │ │ ├── clone.go │ │ ├── comment.go │ │ ├── equal.go │ │ ├── fields.go │ │ ├── purge.go │ │ ├── stringlit.go │ │ ├── unpack.go │ │ └── util.go │ │ ├── event │ │ ├── core │ │ │ ├── event.go │ │ │ ├── export.go │ │ │ └── fast.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── keys │ │ │ ├── keys.go │ │ │ ├── standard.go │ │ │ └── util.go │ │ └── label │ │ │ └── label.go │ │ ├── fmtstr │ │ └── parse.go │ │ ├── gcimporter │ │ ├── bimport.go │ │ ├── exportdata.go │ │ ├── gcimporter.go │ │ ├── iexport.go │ │ ├── iimport.go │ │ ├── predeclared.go │ │ ├── support.go │ │ └── ureader_yes.go │ │ ├── gocommand │ │ ├── invoke.go │ │ ├── invoke_notunix.go │ │ ├── invoke_unix.go │ │ ├── vendor.go │ │ └── version.go │ │ ├── gopathwalk │ │ └── walk.go │ │ ├── goplsexport │ │ └── export.go │ │ ├── imports │ │ ├── fix.go │ │ ├── imports.go │ │ ├── mod.go │ │ ├── mod_cache.go │ │ ├── sortimports.go │ │ ├── source.go │ │ ├── source_env.go │ │ └── source_modindex.go │ │ ├── modindex │ │ ├── directories.go │ │ ├── index.go │ │ ├── lookup.go │ │ ├── modindex.go │ │ └── symbols.go │ │ ├── moreiters │ │ └── iters.go │ │ ├── packagesinternal │ │ └── packages.go │ │ ├── pkgbits │ │ ├── codes.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── flags.go │ │ ├── reloc.go │ │ ├── support.go │ │ ├── sync.go │ │ ├── syncmarker_string.go │ │ └── version.go │ │ ├── refactor │ │ ├── delete.go │ │ ├── imports.go │ │ └── refactor.go │ │ ├── stdlib │ │ ├── deps.go │ │ ├── import.go │ │ ├── manifest.go │ │ └── stdlib.go │ │ ├── typeparams │ │ ├── common.go │ │ ├── coretype.go │ │ ├── free.go │ │ ├── normalize.go │ │ ├── termlist.go │ │ └── typeterm.go │ │ ├── typesinternal │ │ ├── classify_call.go │ │ ├── element.go │ │ ├── errorcode.go │ │ ├── errorcode_string.go │ │ ├── fx.go │ │ ├── isnamed.go │ │ ├── qualifier.go │ │ ├── recv.go │ │ ├── toonew.go │ │ ├── typeindex │ │ │ └── typeindex.go │ │ ├── types.go │ │ ├── varkind.go │ │ └── zerovalue.go │ │ └── versions │ │ ├── features.go │ │ ├── gover.go │ │ ├── types.go │ │ └── versions.go ├── google.golang.org │ ├── appengine │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appengine.go │ │ ├── appengine_vm.go │ │ ├── datastore │ │ │ ├── datastore.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ │ ├── cloudkey │ │ │ │ │ └── cloudkey.go │ │ │ │ └── cloudpb │ │ │ │ │ └── entity.pb.go │ │ │ ├── key.go │ │ │ ├── keycompat.go │ │ │ ├── load.go │ │ │ ├── metadata.go │ │ │ ├── prop.go │ │ │ ├── query.go │ │ │ ├── save.go │ │ │ └── transaction.go │ │ ├── errors.go │ │ ├── identity.go │ │ ├── internal │ │ │ ├── api.go │ │ │ ├── api_classic.go │ │ │ ├── api_common.go │ │ │ ├── app_id.go │ │ │ ├── app_identity │ │ │ │ ├── app_identity_service.pb.go │ │ │ │ └── app_identity_service.proto │ │ │ ├── base │ │ │ │ ├── api_base.pb.go │ │ │ │ └── api_base.proto │ │ │ ├── datastore │ │ │ │ ├── datastore_v3.pb.go │ │ │ │ └── datastore_v3.proto │ │ │ ├── identity.go │ │ │ ├── identity_classic.go │ │ │ ├── identity_flex.go │ │ │ ├── identity_vm.go │ │ │ ├── internal.go │ │ │ ├── log │ │ │ │ ├── log_service.pb.go │ │ │ │ └── log_service.proto │ │ │ ├── main.go │ │ │ ├── main_common.go │ │ │ ├── main_vm.go │ │ │ ├── metadata.go │ │ │ ├── modules │ │ │ │ ├── modules_service.pb.go │ │ │ │ └── modules_service.proto │ │ │ ├── net.go │ │ │ ├── regen.sh │ │ │ ├── remote_api │ │ │ │ ├── remote_api.pb.go │ │ │ │ └── remote_api.proto │ │ │ └── transaction.go │ │ ├── namespace.go │ │ └── timeout.go │ ├── genproto │ │ └── googleapis │ │ │ └── rpc │ │ │ ├── LICENSE │ │ │ └── status │ │ │ └── status.pb.go │ ├── grpc │ │ ├── AUTHORS │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── attributes │ │ │ └── attributes.go │ │ ├── backoff.go │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ ├── balancer.go │ │ │ ├── base │ │ │ │ ├── balancer.go │ │ │ │ └── base.go │ │ │ ├── conn_state_evaluator.go │ │ │ ├── endpointsharding │ │ │ │ └── endpointsharding.go │ │ │ ├── grpclb │ │ │ │ └── state │ │ │ │ │ └── state.go │ │ │ ├── pickfirst │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ ├── pickfirst.go │ │ │ │ └── pickfirstleaf │ │ │ │ │ └── pickfirstleaf.go │ │ │ ├── roundrobin │ │ │ │ └── roundrobin.go │ │ │ └── subconn.go │ │ ├── balancer_wrapper.go │ │ ├── binarylog │ │ │ └── grpc_binarylog_v1 │ │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── channelz │ │ │ └── channelz.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codes │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ ├── connectivity │ │ │ └── connectivity.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── insecure │ │ │ │ └── insecure.go │ │ │ └── tls.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ ├── encoding_v2.go │ │ │ └── proto │ │ │ │ └── proto.go │ │ ├── experimental │ │ │ └── stats │ │ │ │ ├── metricregistry.go │ │ │ │ └── metrics.go │ │ ├── grpclog │ │ │ ├── component.go │ │ │ ├── grpclog.go │ │ │ ├── internal │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── health │ │ │ ├── client.go │ │ │ ├── grpc_health_v1 │ │ │ │ ├── health.pb.go │ │ │ │ └── health_grpc.pb.go │ │ │ ├── logging.go │ │ │ ├── producer.go │ │ │ └── server.go │ │ ├── interceptor.go │ │ ├── internal │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── balancer │ │ │ │ └── gracefulswitch │ │ │ │ │ ├── config.go │ │ │ │ │ └── gracefulswitch.go │ │ │ ├── balancerload │ │ │ │ └── load.go │ │ │ ├── binarylog │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ └── sink.go │ │ │ ├── buffer │ │ │ │ └── unbounded.go │ │ │ ├── channelz │ │ │ │ ├── channel.go │ │ │ │ ├── channelmap.go │ │ │ │ ├── funcs.go │ │ │ │ ├── logging.go │ │ │ │ ├── server.go │ │ │ │ ├── socket.go │ │ │ │ ├── subchannel.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_nonlinux.go │ │ │ │ └── trace.go │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── spiffe.go │ │ │ │ ├── syscallconn.go │ │ │ │ └── util.go │ │ │ ├── envconfig │ │ │ │ ├── envconfig.go │ │ │ │ ├── observability.go │ │ │ │ └── xds.go │ │ │ ├── experimental.go │ │ │ ├── grpclog │ │ │ │ └── prefix_logger.go │ │ │ ├── grpcsync │ │ │ │ ├── callback_serializer.go │ │ │ │ ├── event.go │ │ │ │ └── pubsub.go │ │ │ ├── grpcutil │ │ │ │ ├── compressor.go │ │ │ │ ├── encode_duration.go │ │ │ │ ├── grpcutil.go │ │ │ │ ├── metadata.go │ │ │ │ ├── method.go │ │ │ │ └── regex.go │ │ │ ├── idle │ │ │ │ └── idle.go │ │ │ ├── internal.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── pretty │ │ │ │ └── pretty.go │ │ │ ├── proxyattributes │ │ │ │ └── proxyattributes.go │ │ │ ├── resolver │ │ │ │ ├── config_selector.go │ │ │ │ ├── delegatingresolver │ │ │ │ │ └── delegatingresolver.go │ │ │ │ ├── dns │ │ │ │ │ ├── dns_resolver.go │ │ │ │ │ └── internal │ │ │ │ │ │ └── internal.go │ │ │ │ ├── passthrough │ │ │ │ │ └── passthrough.go │ │ │ │ └── unix │ │ │ │ │ └── unix.go │ │ │ ├── serviceconfig │ │ │ │ ├── duration.go │ │ │ │ └── serviceconfig.go │ │ │ ├── stats │ │ │ │ ├── labels.go │ │ │ │ └── metrics_recorder_list.go │ │ │ ├── status │ │ │ │ └── status.go │ │ │ ├── syscall │ │ │ │ ├── syscall_linux.go │ │ │ │ └── syscall_nonlinux.go │ │ │ ├── tcp_keepalive_others.go │ │ │ ├── tcp_keepalive_unix.go │ │ │ ├── tcp_keepalive_windows.go │ │ │ └── transport │ │ │ │ ├── bdp_estimator.go │ │ │ │ ├── client_stream.go │ │ │ │ ├── controlbuf.go │ │ │ │ ├── defaults.go │ │ │ │ ├── flowcontrol.go │ │ │ │ ├── handler_server.go │ │ │ │ ├── http2_client.go │ │ │ │ ├── http2_server.go │ │ │ │ ├── http_util.go │ │ │ │ ├── logging.go │ │ │ │ ├── networktype │ │ │ │ └── networktype.go │ │ │ │ ├── proxy.go │ │ │ │ ├── server_stream.go │ │ │ │ └── transport.go │ │ ├── keepalive │ │ │ └── keepalive.go │ │ ├── mem │ │ │ ├── buffer_pool.go │ │ │ ├── buffer_slice.go │ │ │ └── buffers.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── peer │ │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── preloader.go │ │ ├── reflection │ │ │ ├── README.md │ │ │ ├── adapt.go │ │ │ ├── grpc_reflection_v1 │ │ │ │ ├── reflection.pb.go │ │ │ │ └── reflection_grpc.pb.go │ │ │ ├── grpc_reflection_v1alpha │ │ │ │ ├── reflection.pb.go │ │ │ │ └── reflection_grpc.pb.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ └── serverreflection.go │ │ ├── resolver │ │ │ ├── dns │ │ │ │ └── dns_resolver.go │ │ │ ├── map.go │ │ │ └── resolver.go │ │ ├── resolver_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── serviceconfig │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── handlers.go │ │ │ ├── metrics.go │ │ │ └── stats.go │ │ ├── status │ │ │ └── status.go │ │ ├── stream.go │ │ ├── stream_interfaces.go │ │ ├── tap │ │ │ └── tap.go │ │ ├── trace.go │ │ ├── trace_notrace.go │ │ ├── trace_withtrace.go │ │ └── version.go │ └── protobuf │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ ├── protojson │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── well_known_types.go │ │ ├── prototext │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire │ │ │ └── wire.go │ │ ├── internal │ │ ├── descfmt │ │ │ └── stringer.go │ │ ├── descopts │ │ │ └── options.go │ │ ├── detrand │ │ │ └── rand.go │ │ ├── editiondefaults │ │ │ ├── defaults.go │ │ │ └── editions_defaults.binpb │ │ ├── editionssupport │ │ │ └── editions.go │ │ ├── encoding │ │ │ ├── defval │ │ │ │ └── default.go │ │ │ ├── json │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ └── encode.go │ │ │ ├── messageset │ │ │ │ └── messageset.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── text │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── filedesc │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ ├── editions.go │ │ │ ├── placeholder.go │ │ │ └── presence.go │ │ ├── filetype │ │ │ └── build.go │ │ ├── flags │ │ │ ├── flags.go │ │ │ ├── proto_legacy_disable.go │ │ │ └── proto_legacy_enable.go │ │ ├── genid │ │ │ ├── any_gen.go │ │ │ ├── api_gen.go │ │ │ ├── descriptor_gen.go │ │ │ ├── doc.go │ │ │ ├── duration_gen.go │ │ │ ├── empty_gen.go │ │ │ ├── field_mask_gen.go │ │ │ ├── go_features_gen.go │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── name.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl │ │ │ ├── api_export.go │ │ │ ├── api_export_opaque.go │ │ │ ├── bitmap.go │ │ │ ├── bitmap_race.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_field_opaque.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_message.go │ │ │ ├── codec_message_opaque.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── equal.go │ │ │ ├── extension.go │ │ │ ├── lazy.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_opaque.go │ │ │ ├── message_opaque_gen.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_field_gen.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_opaque.go │ │ │ ├── presence.go │ │ │ └── validate.go │ │ ├── order │ │ │ ├── order.go │ │ │ └── range.go │ │ ├── pragma │ │ │ └── pragma.go │ │ ├── protolazy │ │ │ ├── bufferreader.go │ │ │ ├── lazy.go │ │ │ └── pointer_unsafe.go │ │ ├── set │ │ │ └── ints.go │ │ ├── strs │ │ │ ├── strings.go │ │ │ └── strings_unsafe.go │ │ └── version │ │ │ └── version.go │ │ ├── proto │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ ├── wrapperopaque.go │ │ └── wrappers.go │ │ ├── protoadapt │ │ └── convert.go │ │ ├── reflect │ │ ├── protodesc │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_resolve.go │ │ │ ├── desc_validate.go │ │ │ ├── editions.go │ │ │ └── proto.go │ │ ├── protoreflect │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── source_gen.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_equal.go │ │ │ ├── value_union.go │ │ │ └── value_unsafe.go │ │ └── protoregistry │ │ │ └── registry.go │ │ ├── runtime │ │ ├── protoiface │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl │ │ │ ├── impl.go │ │ │ └── version.go │ │ └── types │ │ ├── descriptorpb │ │ └── descriptor.pb.go │ │ ├── gofeaturespb │ │ └── go_features.pb.go │ │ └── known │ │ ├── anypb │ │ └── any.pb.go │ │ ├── durationpb │ │ └── duration.pb.go │ │ ├── emptypb │ │ └── empty.pb.go │ │ └── timestamppb │ │ └── timestamp.pb.go ├── gopkg.in │ ├── ini.v1 │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codecov.yml │ │ ├── data_source.go │ │ ├── deprecated.go │ │ ├── error.go │ │ ├── file.go │ │ ├── helper.go │ │ ├── ini.go │ │ ├── key.go │ │ ├── parser.go │ │ ├── section.go │ │ └── struct.go │ ├── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── honnef.co │ └── go │ │ └── tools │ │ ├── LICENSE │ │ ├── LICENSE-THIRD-PARTY │ │ ├── analysis │ │ ├── callcheck │ │ │ └── callcheck.go │ │ ├── code │ │ │ ├── code.go │ │ │ └── visit.go │ │ ├── edit │ │ │ └── edit.go │ │ ├── facts │ │ │ ├── deprecated │ │ │ │ └── deprecated.go │ │ │ ├── directives │ │ │ │ └── directives.go │ │ │ ├── generated │ │ │ │ └── generated.go │ │ │ ├── nilness │ │ │ │ └── nilness.go │ │ │ ├── purity │ │ │ │ └── purity.go │ │ │ ├── tokenfile │ │ │ │ └── token.go │ │ │ └── typedness │ │ │ │ └── typedness.go │ │ ├── lint │ │ │ └── lint.go │ │ └── report │ │ │ └── report.go │ │ ├── config │ │ ├── config.go │ │ └── example.conf │ │ ├── go │ │ ├── ast │ │ │ └── astutil │ │ │ │ ├── upstream.go │ │ │ │ └── util.go │ │ ├── ir │ │ │ ├── LICENSE │ │ │ ├── UPSTREAM │ │ │ ├── blockopt.go │ │ │ ├── builder.go │ │ │ ├── const.go │ │ │ ├── create.go │ │ │ ├── doc.go │ │ │ ├── dom.go │ │ │ ├── emit.go │ │ │ ├── exits.go │ │ │ ├── func.go │ │ │ ├── html.go │ │ │ ├── irutil │ │ │ │ ├── load.go │ │ │ │ ├── loops.go │ │ │ │ ├── stub.go │ │ │ │ ├── switch.go │ │ │ │ ├── terminates.go │ │ │ │ ├── util.go │ │ │ │ └── visit.go │ │ │ ├── lift.go │ │ │ ├── lvalue.go │ │ │ ├── methods.go │ │ │ ├── mode.go │ │ │ ├── print.go │ │ │ ├── sanity.go │ │ │ ├── source.go │ │ │ ├── ssa.go │ │ │ ├── util.go │ │ │ ├── wrappers.go │ │ │ └── write.go │ │ └── types │ │ │ └── typeutil │ │ │ ├── ext.go │ │ │ ├── typeparams.go │ │ │ ├── upstream.go │ │ │ └── util.go │ │ ├── internal │ │ ├── passes │ │ │ └── buildir │ │ │ │ └── buildir.go │ │ └── sharedcheck │ │ │ └── lint.go │ │ ├── knowledge │ │ ├── arg.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── signatures.go │ │ └── targets.go │ │ ├── pattern │ │ ├── convert.go │ │ ├── doc.go │ │ ├── lexer.go │ │ ├── match.go │ │ ├── parser.go │ │ └── pattern.go │ │ ├── printf │ │ ├── fuzz.go │ │ └── printf.go │ │ ├── quickfix │ │ ├── analysis.go │ │ ├── doc.go │ │ ├── qf1001 │ │ │ └── qf1001.go │ │ ├── qf1002 │ │ │ └── qf1002.go │ │ ├── qf1003 │ │ │ └── qf1003.go │ │ ├── qf1004 │ │ │ └── qf1004.go │ │ ├── qf1005 │ │ │ └── qf1005.go │ │ ├── qf1006 │ │ │ └── qf1006.go │ │ ├── qf1007 │ │ │ └── qf1007.go │ │ ├── qf1008 │ │ │ └── qf1008.go │ │ ├── qf1009 │ │ │ └── qf1009.go │ │ ├── qf1010 │ │ │ └── qf1010.go │ │ ├── qf1011 │ │ │ └── qf1011.go │ │ └── qf1012 │ │ │ └── qf1012.go │ │ ├── simple │ │ ├── analysis.go │ │ ├── doc.go │ │ ├── s1000 │ │ │ └── s1000.go │ │ ├── s1001 │ │ │ └── s1001.go │ │ ├── s1002 │ │ │ └── s1002.go │ │ ├── s1003 │ │ │ └── s1003.go │ │ ├── s1004 │ │ │ └── s1004.go │ │ ├── s1005 │ │ │ └── s1005.go │ │ ├── s1006 │ │ │ └── s1006.go │ │ ├── s1007 │ │ │ └── s1007.go │ │ ├── s1008 │ │ │ └── s1008.go │ │ ├── s1009 │ │ │ └── s1009.go │ │ ├── s1010 │ │ │ └── s1010.go │ │ ├── s1011 │ │ │ └── s1011.go │ │ ├── s1012 │ │ │ └── s1012.go │ │ ├── s1016 │ │ │ └── s1016.go │ │ ├── s1017 │ │ │ └── s1017.go │ │ ├── s1018 │ │ │ └── s1018.go │ │ ├── s1019 │ │ │ └── s1019.go │ │ ├── s1020 │ │ │ └── s1020.go │ │ ├── s1021 │ │ │ └── s1021.go │ │ ├── s1023 │ │ │ └── s1023.go │ │ ├── s1024 │ │ │ └── s1024.go │ │ ├── s1025 │ │ │ └── s1025.go │ │ ├── s1028 │ │ │ └── s1028.go │ │ ├── s1029 │ │ │ └── s1029.go │ │ ├── s1030 │ │ │ └── s1030.go │ │ ├── s1031 │ │ │ └── s1031.go │ │ ├── s1032 │ │ │ └── s1032.go │ │ ├── s1033 │ │ │ └── s1033.go │ │ ├── s1034 │ │ │ └── s1034.go │ │ ├── s1035 │ │ │ └── s1035.go │ │ ├── s1036 │ │ │ └── s1036.go │ │ ├── s1037 │ │ │ └── s1037.go │ │ ├── s1038 │ │ │ └── s1038.go │ │ ├── s1039 │ │ │ └── s1039.go │ │ └── s1040 │ │ │ └── s1040.go │ │ ├── staticcheck │ │ ├── analysis.go │ │ ├── doc.go │ │ ├── fakejson │ │ │ └── encode.go │ │ ├── fakereflect │ │ │ └── fakereflect.go │ │ ├── fakexml │ │ │ ├── marshal.go │ │ │ ├── typeinfo.go │ │ │ └── xml.go │ │ ├── sa1000 │ │ │ └── sa1000.go │ │ ├── sa1001 │ │ │ └── sa1001.go │ │ ├── sa1002 │ │ │ └── sa1002.go │ │ ├── sa1003 │ │ │ └── sa1003.go │ │ ├── sa1004 │ │ │ └── sa1004.go │ │ ├── sa1005 │ │ │ └── sa1005.go │ │ ├── sa1006 │ │ │ └── sa1006.go │ │ ├── sa1007 │ │ │ └── sa1007.go │ │ ├── sa1008 │ │ │ └── sa1008.go │ │ ├── sa1010 │ │ │ └── sa1010.go │ │ ├── sa1011 │ │ │ └── sa1011.go │ │ ├── sa1012 │ │ │ └── sa1012.go │ │ ├── sa1013 │ │ │ └── sa1013.go │ │ ├── sa1014 │ │ │ └── sa1014.go │ │ ├── sa1015 │ │ │ └── sa1015.go │ │ ├── sa1016 │ │ │ └── sa1016.go │ │ ├── sa1017 │ │ │ └── sa1017.go │ │ ├── sa1018 │ │ │ └── sa1018.go │ │ ├── sa1019 │ │ │ └── sa1019.go │ │ ├── sa1020 │ │ │ └── sa1020.go │ │ ├── sa1021 │ │ │ └── sa1021.go │ │ ├── sa1023 │ │ │ └── sa1023.go │ │ ├── sa1024 │ │ │ └── sa1024.go │ │ ├── sa1025 │ │ │ └── sa1025.go │ │ ├── sa1026 │ │ │ └── sa1026.go │ │ ├── sa1027 │ │ │ └── sa1027.go │ │ ├── sa1028 │ │ │ └── sa1028.go │ │ ├── sa1029 │ │ │ └── sa1029.go │ │ ├── sa1030 │ │ │ └── sa1030.go │ │ ├── sa1031 │ │ │ └── sa1031.go │ │ ├── sa1032 │ │ │ └── sa1032.go │ │ ├── sa2000 │ │ │ └── sa2000.go │ │ ├── sa2001 │ │ │ └── sa2001.go │ │ ├── sa2002 │ │ │ └── sa2002.go │ │ ├── sa2003 │ │ │ └── sa2003.go │ │ ├── sa3000 │ │ │ └── sa3000.go │ │ ├── sa3001 │ │ │ └── sa3001.go │ │ ├── sa4000 │ │ │ └── sa4000.go │ │ ├── sa4001 │ │ │ └── sa4001.go │ │ ├── sa4003 │ │ │ └── sa4003.go │ │ ├── sa4004 │ │ │ └── sa4004.go │ │ ├── sa4005 │ │ │ └── sa4005.go │ │ ├── sa4006 │ │ │ └── sa4006.go │ │ ├── sa4008 │ │ │ └── sa4008.go │ │ ├── sa4009 │ │ │ └── sa4009.go │ │ ├── sa4010 │ │ │ └── sa4010.go │ │ ├── sa4011 │ │ │ └── sa4011.go │ │ ├── sa4012 │ │ │ └── sa4012.go │ │ ├── sa4013 │ │ │ └── sa4013.go │ │ ├── sa4014 │ │ │ └── sa4014.go │ │ ├── sa4015 │ │ │ └── sa4015.go │ │ ├── sa4016 │ │ │ └── sa4016.go │ │ ├── sa4017 │ │ │ └── sa4017.go │ │ ├── sa4018 │ │ │ └── sa4018.go │ │ ├── sa4019 │ │ │ └── sa4019.go │ │ ├── sa4020 │ │ │ └── sa4020.go │ │ ├── sa4021 │ │ │ └── sa4021.go │ │ ├── sa4022 │ │ │ └── sa4022.go │ │ ├── sa4023 │ │ │ └── sa4023.go │ │ ├── sa4024 │ │ │ └── sa4024.go │ │ ├── sa4025 │ │ │ └── sa4025.go │ │ ├── sa4026 │ │ │ └── sa4026.go │ │ ├── sa4027 │ │ │ └── sa4027.go │ │ ├── sa4028 │ │ │ └── sa4028.go │ │ ├── sa4029 │ │ │ └── sa4029.go │ │ ├── sa4030 │ │ │ └── sa4030.go │ │ ├── sa4031 │ │ │ └── sa4031.go │ │ ├── sa4032 │ │ │ └── sa4032.go │ │ ├── sa5000 │ │ │ └── sa5000.go │ │ ├── sa5001 │ │ │ └── sa5001.go │ │ ├── sa5002 │ │ │ └── sa5002.go │ │ ├── sa5003 │ │ │ └── sa5003.go │ │ ├── sa5004 │ │ │ └── sa5004.go │ │ ├── sa5005 │ │ │ └── sa5005.go │ │ ├── sa5007 │ │ │ └── sa5007.go │ │ ├── sa5008 │ │ │ ├── sa5008.go │ │ │ └── structtag.go │ │ ├── sa5009 │ │ │ └── sa5009.go │ │ ├── sa5010 │ │ │ └── sa5010.go │ │ ├── sa5011 │ │ │ └── sa5011.go │ │ ├── sa5012 │ │ │ └── sa5012.go │ │ ├── sa6000 │ │ │ └── sa6000.go │ │ ├── sa6001 │ │ │ └── sa6001.go │ │ ├── sa6002 │ │ │ └── sa6002.go │ │ ├── sa6003 │ │ │ └── sa6003.go │ │ ├── sa6005 │ │ │ └── sa6005.go │ │ ├── sa6006 │ │ │ └── sa6006.go │ │ ├── sa9001 │ │ │ └── sa9001.go │ │ ├── sa9002 │ │ │ └── sa9002.go │ │ ├── sa9003 │ │ │ └── sa9003.go │ │ ├── sa9004 │ │ │ └── sa9004.go │ │ ├── sa9005 │ │ │ └── sa9005.go │ │ ├── sa9006 │ │ │ └── sa9006.go │ │ ├── sa9007 │ │ │ └── sa9007.go │ │ ├── sa9008 │ │ │ └── sa9008.go │ │ └── sa9009 │ │ │ └── sa9009.go │ │ ├── stylecheck │ │ ├── analysis.go │ │ ├── doc.go │ │ ├── st1000 │ │ │ └── st1000.go │ │ ├── st1001 │ │ │ └── st1001.go │ │ ├── st1003 │ │ │ └── st1003.go │ │ ├── st1005 │ │ │ └── st1005.go │ │ ├── st1006 │ │ │ └── st1006.go │ │ ├── st1008 │ │ │ └── st1008.go │ │ ├── st1011 │ │ │ └── st1011.go │ │ ├── st1012 │ │ │ └── st1012.go │ │ ├── st1013 │ │ │ └── st1013.go │ │ ├── st1015 │ │ │ └── st1015.go │ │ ├── st1016 │ │ │ └── st1016.go │ │ ├── st1017 │ │ │ └── st1017.go │ │ ├── st1018 │ │ │ └── st1018.go │ │ ├── st1019 │ │ │ └── st1019.go │ │ ├── st1020 │ │ │ └── st1020.go │ │ ├── st1021 │ │ │ └── st1021.go │ │ ├── st1022 │ │ │ └── st1022.go │ │ └── st1023 │ │ │ └── st1023.go │ │ └── unused │ │ ├── implements.go │ │ ├── runtime.go │ │ ├── serialize.go │ │ └── unused.go ├── modules.txt └── mvdan.cc │ ├── gofumpt │ ├── LICENSE │ ├── LICENSE.google │ ├── format │ │ ├── format.go │ │ ├── rewrite.go │ │ └── simplify.go │ └── internal │ │ ├── govendor │ │ └── go │ │ │ ├── doc │ │ │ └── comment │ │ │ │ ├── doc.go │ │ │ │ ├── html.go │ │ │ │ ├── markdown.go │ │ │ │ ├── parse.go │ │ │ │ ├── print.go │ │ │ │ ├── std.go │ │ │ │ └── text.go │ │ │ ├── format │ │ │ ├── format.go │ │ │ └── internal.go │ │ │ └── printer │ │ │ ├── comment.go │ │ │ ├── gobuild.go │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ └── version │ │ └── version.go │ └── unparam │ ├── LICENSE │ └── check │ └── check.go └── website ├── docs ├── d │ ├── actions_environment_public_key.html.markdown │ ├── actions_environment_secrets.html.markdown │ ├── actions_environment_variables.html.markdown │ ├── actions_organization_oidc_subject_claim_customization_template.html.markdown │ ├── actions_organization_public_key.html.markdown │ ├── actions_organization_registration_token.html.markdown │ ├── actions_organization_secrets.html.markdown │ ├── actions_organization_variables.html.markdown │ ├── actions_public_key.html.markdown │ ├── actions_registration_token.html.markdown │ ├── actions_repository_oidc_subject_claim_customization_template.html.markdown │ ├── actions_secrets.html.markdown │ ├── actions_variables.html.markdown │ ├── app.html.markdown │ ├── app_token.html.markdown │ ├── branch.html.markdown │ ├── branch_protection_rules.html.markdown │ ├── codespaces_organization_public_key.html.markdown │ ├── codespaces_organization_secrets.html.markdown │ ├── codespaces_public_key.html.markdown │ ├── codespaces_secrets.html.markdown │ ├── codespaces_user_public_key.html.markdown │ ├── codespaces_user_secrets.html.markdown │ ├── collaborators.html.markdown │ ├── dependabot_organization_public_key.html.markdown │ ├── dependabot_organization_secrets.html.markdown │ ├── dependabot_public_key.html.markdown │ ├── dependabot_secrets.html.markdown │ ├── enterprise.html.markdown │ ├── external_groups.html.markdown │ ├── ip_ranges.html.markdown │ ├── issue_labels.html.markdown │ ├── membership.html.markdown │ ├── organization.html.markdown │ ├── organization_custom_properties.html.markdown │ ├── organization_custom_role.html.markdown │ ├── organization_external_identities.markdown │ ├── organization_ip_allow_list.html.markdown │ ├── organization_repository_role.html.markdown │ ├── organization_repository_roles.html.markdown │ ├── organization_role.html.markdown │ ├── organization_role_teams.html.markdown │ ├── organization_role_users.html.markdown │ ├── organization_roles.html.markdown │ ├── organization_security_managers.html.markdown │ ├── organization_team_sync_groups.html.markdown │ ├── organization_teams.html.markdown │ ├── organization_webhooks.html.markdown │ ├── ref.html.markdown │ ├── release.html.markdown │ ├── repositories.html.markdown │ ├── repository.html.markdown │ ├── repository_autolink_references.html.markdown │ ├── repository_branches.html.markdown │ ├── repository_custom_properties.html.markdown │ ├── repository_deploy_keys.html.markdown │ ├── repository_deployment_branch_policies.html.markdown │ ├── repository_environment_deployment_policies.html.markdown │ ├── repository_environments.html.markdown │ ├── repository_file.html.markdown │ ├── repository_milestone.html.markdown │ ├── repository_pull_request.html.markdown │ ├── repository_pull_requests.html.markdown │ ├── repository_teams.html.markdown │ ├── repository_webhooks.html.markdown │ ├── rest_api.html.markdown │ ├── ssh_keys.html.markdown │ ├── team.html.markdown │ ├── tree.html.markdown │ ├── user.html.markdown │ ├── user_external_identity.html.markdown │ └── users.html.markdown ├── index.html.markdown └── r │ ├── actions_environment_secret.html.markdown │ ├── actions_environment_variable.html.markdown │ ├── actions_hosted_runner.html.markdown │ ├── actions_organization_oidc_subject_claim_customization_template.html.markdown │ ├── actions_organization_permissions.html.markdown │ ├── actions_organization_secret.html.markdown │ ├── actions_organization_secret_repositories.html.markdown │ ├── actions_organization_secret_repository.html.markdown │ ├── actions_organization_variable.html.markdown │ ├── actions_repository_access_level.html.markdown │ ├── actions_repository_oidc_subject_claim_customization_template.html.markdown │ ├── actions_repository_permissions.html.markdown │ ├── actions_runner_group.html.markdown │ ├── actions_secret.html.markdown │ ├── actions_variable.html.markdown │ ├── app_installation_repositories.html.markdown │ ├── app_installation_repository.html.markdown │ ├── branch.html.markdown │ ├── branch_default.html.markdown │ ├── branch_protection.html.markdown │ ├── branch_protection_v3.html.markdown │ ├── codespaces_organization_secret.html.markdown │ ├── codespaces_organization_secret_repositories.html.markdown │ ├── codespaces_secret.html.markdown │ ├── codespaces_user_secret.html.markdown │ ├── dependabot_organization_secret.html.markdown │ ├── dependabot_organization_secret_repositories.html.markdown │ ├── dependabot_secret.html.markdown │ ├── emu_group_mapping.html.markdown │ ├── enterprise_actions_permissions.html.markdown │ ├── enterprise_actions_runner_group.html.markdown │ ├── enterprise_actions_workflow_permissions.html.markdown │ ├── enterprise_organization.html.markdown │ ├── enterprise_security_analysis_settings.html.markdown │ ├── issue.html.markdown │ ├── issue_label.html.markdown │ ├── issue_labels.html.markdown │ ├── membership.html.markdown │ ├── organization_block.html.markdown │ ├── organization_custom_properties.html.markdown │ ├── organization_custom_role.html.markdown │ ├── organization_project.html.markdown │ ├── organization_repository_role.html.markdown │ ├── organization_role.html.markdown │ ├── organization_role_team.html.markdown │ ├── organization_role_team_assignment.html.markdown │ ├── organization_role_user.html.markdown │ ├── organization_ruleset.html.markdown │ ├── organization_security_manager.html.markdown │ ├── organization_settings.html.markdown │ ├── organization_webhook.html.markdown │ ├── project_card.html.markdown │ ├── project_column.html.markdown │ ├── release.html.markdown │ ├── repository.html.markdown │ ├── repository_autolink_reference.html.markdown │ ├── repository_collaborator.html.markdown │ ├── repository_collaborators.html.markdown │ ├── repository_custom_property.html.markdown │ ├── repository_dependabot_security_updates.html.markdown │ ├── repository_deploy_key.html.markdown │ ├── repository_deployment_branch_policy.html.markdown │ ├── repository_environment.html.markdown │ ├── repository_environment_deployment_policy.html.markdown │ ├── repository_file.html.markdown │ ├── repository_milestone.html.markdown │ ├── repository_project.html.markdown │ ├── repository_pull_request.html.markdown │ ├── repository_ruleset.html.markdown │ ├── repository_topics.html.markdown │ ├── repository_webhook.html.markdown │ ├── team.html.markdown │ ├── team_members.html.markdown │ ├── team_membership.html.markdown │ ├── team_repository.html.markdown │ ├── team_settings.html.markdown │ ├── team_sync_group_mapping.html.markdown │ ├── user_gpg_key.html.markdown │ ├── user_invitation_accepter.html.markdown │ ├── user_ssh_key.html.markdown │ └── workflow_repository_permissions.html.markdown └── github.erb /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/ISSUE_TEMPLATE/maintenance.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/immediate-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/workflows/immediate-response.yaml -------------------------------------------------------------------------------- /.github/workflows/labeler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/workflows/labeler.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/app_authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/app_authentication/README.md -------------------------------------------------------------------------------- /examples/app_authentication/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/app_authentication/main.tf -------------------------------------------------------------------------------- /examples/app_authentication/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/app_authentication/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/app_authentication/providers.tf -------------------------------------------------------------------------------- /examples/app_authentication/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/app_authentication/variables.tf -------------------------------------------------------------------------------- /examples/app_installation_repository/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/app_token/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/app_token/main.tf -------------------------------------------------------------------------------- /examples/app_token/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/app_token/variables.tf -------------------------------------------------------------------------------- /examples/dev.tfrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/dev.tfrc -------------------------------------------------------------------------------- /examples/emu/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/emu/main.tf -------------------------------------------------------------------------------- /examples/enterprise_settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/enterprise_settings/README.md -------------------------------------------------------------------------------- /examples/enterprise_settings/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/enterprise_settings/main.tf -------------------------------------------------------------------------------- /examples/hosted_runner/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/hosted_runner/main.tf -------------------------------------------------------------------------------- /examples/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/release/README.md -------------------------------------------------------------------------------- /examples/release/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/release/main.tf -------------------------------------------------------------------------------- /examples/release/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/release/outputs.tf -------------------------------------------------------------------------------- /examples/release/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/release/providers.tf -------------------------------------------------------------------------------- /examples/release/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/release/variables.tf -------------------------------------------------------------------------------- /examples/repository_collaborator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_collaborator/README.md -------------------------------------------------------------------------------- /examples/repository_collaborator/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_collaborator/main.tf -------------------------------------------------------------------------------- /examples/repository_non_org_owner/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_non_org_owner/main.tf -------------------------------------------------------------------------------- /examples/repository_org_internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_org_internal/README.md -------------------------------------------------------------------------------- /examples/repository_org_internal/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_org_internal/main.tf -------------------------------------------------------------------------------- /examples/repository_team/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_team/README.md -------------------------------------------------------------------------------- /examples/repository_team/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_team/main.tf -------------------------------------------------------------------------------- /examples/repository_team/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/repository_team/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_team/providers.tf -------------------------------------------------------------------------------- /examples/repository_team/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_team/variables.tf -------------------------------------------------------------------------------- /examples/repository_visibility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_visibility/README.md -------------------------------------------------------------------------------- /examples/repository_visibility/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_visibility/main.tf -------------------------------------------------------------------------------- /examples/repository_visibility/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/repository_visibility/outputs.tf -------------------------------------------------------------------------------- /examples/secret-drifting/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/examples/secret-drifting/main.tf -------------------------------------------------------------------------------- /github/apps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/apps.go -------------------------------------------------------------------------------- /github/apps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/apps_test.go -------------------------------------------------------------------------------- /github/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/config.go -------------------------------------------------------------------------------- /github/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/config_test.go -------------------------------------------------------------------------------- /github/data_source_github_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_app.go -------------------------------------------------------------------------------- /github/data_source_github_app_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_app_token.go -------------------------------------------------------------------------------- /github/data_source_github_branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_branch.go -------------------------------------------------------------------------------- /github/data_source_github_branch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_branch_test.go -------------------------------------------------------------------------------- /github/data_source_github_collaborators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_collaborators.go -------------------------------------------------------------------------------- /github/data_source_github_enterprise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_enterprise.go -------------------------------------------------------------------------------- /github/data_source_github_ip_ranges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_ip_ranges.go -------------------------------------------------------------------------------- /github/data_source_github_issue_labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_issue_labels.go -------------------------------------------------------------------------------- /github/data_source_github_membership.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_membership.go -------------------------------------------------------------------------------- /github/data_source_github_organization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_organization.go -------------------------------------------------------------------------------- /github/data_source_github_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_ref.go -------------------------------------------------------------------------------- /github/data_source_github_ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_ref_test.go -------------------------------------------------------------------------------- /github/data_source_github_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_release.go -------------------------------------------------------------------------------- /github/data_source_github_release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_release_test.go -------------------------------------------------------------------------------- /github/data_source_github_repositories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_repositories.go -------------------------------------------------------------------------------- /github/data_source_github_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_repository.go -------------------------------------------------------------------------------- /github/data_source_github_rest_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_rest_api.go -------------------------------------------------------------------------------- /github/data_source_github_rest_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_rest_api_test.go -------------------------------------------------------------------------------- /github/data_source_github_ssh_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_ssh_keys.go -------------------------------------------------------------------------------- /github/data_source_github_ssh_keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_ssh_keys_test.go -------------------------------------------------------------------------------- /github/data_source_github_team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_team.go -------------------------------------------------------------------------------- /github/data_source_github_team_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_team_test.go -------------------------------------------------------------------------------- /github/data_source_github_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_tree.go -------------------------------------------------------------------------------- /github/data_source_github_tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_tree_test.go -------------------------------------------------------------------------------- /github/data_source_github_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_user.go -------------------------------------------------------------------------------- /github/data_source_github_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_user_test.go -------------------------------------------------------------------------------- /github/data_source_github_users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_users.go -------------------------------------------------------------------------------- /github/data_source_github_users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/data_source_github_users_test.go -------------------------------------------------------------------------------- /github/migrate_github_actions_secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/migrate_github_actions_secret.go -------------------------------------------------------------------------------- /github/migrate_github_branch_protection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/migrate_github_branch_protection.go -------------------------------------------------------------------------------- /github/migrate_github_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/migrate_github_repository.go -------------------------------------------------------------------------------- /github/migrate_github_repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/migrate_github_repository_test.go -------------------------------------------------------------------------------- /github/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/provider.go -------------------------------------------------------------------------------- /github/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/provider_test.go -------------------------------------------------------------------------------- /github/provider_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/provider_utils.go -------------------------------------------------------------------------------- /github/repository_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/repository_utils.go -------------------------------------------------------------------------------- /github/resource_github_actions_secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_actions_secret.go -------------------------------------------------------------------------------- /github/resource_github_actions_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_actions_variable.go -------------------------------------------------------------------------------- /github/resource_github_branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_branch.go -------------------------------------------------------------------------------- /github/resource_github_branch_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_branch_default.go -------------------------------------------------------------------------------- /github/resource_github_branch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_branch_test.go -------------------------------------------------------------------------------- /github/resource_github_etag_acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_etag_acc_test.go -------------------------------------------------------------------------------- /github/resource_github_etag_unit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_etag_unit_test.go -------------------------------------------------------------------------------- /github/resource_github_issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_issue.go -------------------------------------------------------------------------------- /github/resource_github_issue_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_issue_label.go -------------------------------------------------------------------------------- /github/resource_github_issue_label_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_issue_label_test.go -------------------------------------------------------------------------------- /github/resource_github_issue_labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_issue_labels.go -------------------------------------------------------------------------------- /github/resource_github_issue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_issue_test.go -------------------------------------------------------------------------------- /github/resource_github_membership.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_membership.go -------------------------------------------------------------------------------- /github/resource_github_membership_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_membership_test.go -------------------------------------------------------------------------------- /github/resource_github_project_card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_project_card.go -------------------------------------------------------------------------------- /github/resource_github_project_column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_project_column.go -------------------------------------------------------------------------------- /github/resource_github_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_release.go -------------------------------------------------------------------------------- /github/resource_github_release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_release_test.go -------------------------------------------------------------------------------- /github/resource_github_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_repository.go -------------------------------------------------------------------------------- /github/resource_github_repository_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_repository_file.go -------------------------------------------------------------------------------- /github/resource_github_repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_repository_test.go -------------------------------------------------------------------------------- /github/resource_github_team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_team.go -------------------------------------------------------------------------------- /github/resource_github_team_members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_team_members.go -------------------------------------------------------------------------------- /github/resource_github_team_membership.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_team_membership.go -------------------------------------------------------------------------------- /github/resource_github_team_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_team_repository.go -------------------------------------------------------------------------------- /github/resource_github_team_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_team_settings.go -------------------------------------------------------------------------------- /github/resource_github_team_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_team_test.go -------------------------------------------------------------------------------- /github/resource_github_user_gpg_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_user_gpg_key.go -------------------------------------------------------------------------------- /github/resource_github_user_ssh_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_github_user_ssh_key.go -------------------------------------------------------------------------------- /github/resource_organization_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_organization_block.go -------------------------------------------------------------------------------- /github/resource_organization_block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/resource_organization_block_test.go -------------------------------------------------------------------------------- /github/respository_rules_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/respository_rules_utils.go -------------------------------------------------------------------------------- /github/respository_rules_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/respository_rules_utils_test.go -------------------------------------------------------------------------------- /github/schema_webhook_configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/schema_webhook_configuration.go -------------------------------------------------------------------------------- /github/sweeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/sweeper_test.go -------------------------------------------------------------------------------- /github/test-fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/test-fixtures/README.md -------------------------------------------------------------------------------- /github/test-fixtures/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/test-fixtures/cert.pem -------------------------------------------------------------------------------- /github/test-fixtures/domain.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/test-fixtures/domain.csr -------------------------------------------------------------------------------- /github/test-fixtures/github-app-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/test-fixtures/github-app-key.pem -------------------------------------------------------------------------------- /github/test-fixtures/github-app-key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/test-fixtures/github-app-key.pub -------------------------------------------------------------------------------- /github/test-fixtures/gpg-pubkey.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/test-fixtures/gpg-pubkey.asc -------------------------------------------------------------------------------- /github/test-fixtures/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/test-fixtures/id_rsa.pub -------------------------------------------------------------------------------- /github/test-fixtures/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/test-fixtures/key.pem -------------------------------------------------------------------------------- /github/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/transport.go -------------------------------------------------------------------------------- /github/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/transport_test.go -------------------------------------------------------------------------------- /github/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util.go -------------------------------------------------------------------------------- /github/util_labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util_labels.go -------------------------------------------------------------------------------- /github/util_permissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util_permissions.go -------------------------------------------------------------------------------- /github/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util_test.go -------------------------------------------------------------------------------- /github/util_v4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util_v4.go -------------------------------------------------------------------------------- /github/util_v4_branch_protection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util_v4_branch_protection.go -------------------------------------------------------------------------------- /github/util_v4_consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util_v4_consts.go -------------------------------------------------------------------------------- /github/util_v4_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util_v4_repository.go -------------------------------------------------------------------------------- /github/util_v4_repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util_v4_repository_test.go -------------------------------------------------------------------------------- /github/util_v4_teams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/github/util_v4_teams.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/main.go -------------------------------------------------------------------------------- /scripts/gofmtcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/scripts/gofmtcheck.sh -------------------------------------------------------------------------------- /terraform-registry-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/terraform-registry-manifest.json -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/tools.go -------------------------------------------------------------------------------- /vendor/4d63.com/gochecknoglobals/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/4d63.com/gochecknoglobals/LICENSE -------------------------------------------------------------------------------- /vendor/codeberg.org/chavacava/garif/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | .devcontainer/ -------------------------------------------------------------------------------- /vendor/codeberg.org/chavacava/garif/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/codeberg.org/chavacava/garif/doc.go -------------------------------------------------------------------------------- /vendor/codeberg.org/chavacava/garif/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/codeberg.org/chavacava/garif/io.go -------------------------------------------------------------------------------- /vendor/dev.gaijin.team/go/golib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/dev.gaijin.team/go/golib/LICENSE -------------------------------------------------------------------------------- /vendor/dev.gaijin.team/go/golib/e/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/dev.gaijin.team/go/golib/e/doc.go -------------------------------------------------------------------------------- /vendor/dev.gaijin.team/go/golib/e/err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/dev.gaijin.team/go/golib/e/err.go -------------------------------------------------------------------------------- /vendor/dev.gaijin.team/go/golib/e/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/dev.gaijin.team/go/golib/e/log.go -------------------------------------------------------------------------------- /vendor/github.com/4meepo/tagalign/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/4meepo/tagalign/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/4meepo/tagalign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/4meepo/tagalign/Makefile -------------------------------------------------------------------------------- /vendor/github.com/Antonboom/nilnil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/Antonboom/nilnil/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/BurntSushi/toml/error.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/BurntSushi/toml/meta.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/agext/levenshtein/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/agext/levenshtein/DCO -------------------------------------------------------------------------------- /vendor/github.com/agext/levenshtein/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/agext/levenshtein/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/bkielbasa/cyclop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/bkielbasa/cyclop/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blizzy78/varnamelen/.gitignore: -------------------------------------------------------------------------------- 1 | /cmd/__debug_bin 2 | -------------------------------------------------------------------------------- /vendor/github.com/bombsimon/wsl/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/bombsimon/wsl/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/bombsimon/wsl/v4/wsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/bombsimon/wsl/v4/wsl.go -------------------------------------------------------------------------------- /vendor/github.com/bombsimon/wsl/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/bombsimon/wsl/v5/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/bombsimon/wsl/v5/wsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/bombsimon/wsl/v5/wsl.go -------------------------------------------------------------------------------- /vendor/github.com/breml/bidichk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/breml/bidichk/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/breml/errchkjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/breml/errchkjson/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/butuzov/ireturn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/butuzov/ireturn/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/butuzov/mirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/butuzov/mirror/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/butuzov/mirror/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/butuzov/mirror/Makefile -------------------------------------------------------------------------------- /vendor/github.com/butuzov/mirror/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/butuzov/mirror/readme.md -------------------------------------------------------------------------------- /vendor/github.com/ccojocar/zxcvbn-go/.gitignore: -------------------------------------------------------------------------------- 1 | zxcvbn 2 | debug.test 3 | 4 | # SBOMs generated during CI 5 | /bom.json 6 | -------------------------------------------------------------------------------- /vendor/github.com/charithe/durationcheck/.gitignore: -------------------------------------------------------------------------------- 1 | /durationcheck 2 | -------------------------------------------------------------------------------- /vendor/github.com/charmbracelet/lipgloss/.gitignore: -------------------------------------------------------------------------------- 1 | ssh_example_ed25519* 2 | dist/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/client9/misspell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/client9/misspell/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/client9/misspell/case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/client9/misspell/case.go -------------------------------------------------------------------------------- /vendor/github.com/client9/misspell/mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/client9/misspell/mime.go -------------------------------------------------------------------------------- /vendor/github.com/client9/misspell/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/client9/misspell/url.go -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/circl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/cloudflare/circl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/curioswitch/go-reassign/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/curioswitch/go-reassign/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .VSCode 3 | .envrc 4 | 5 | build 6 | dist 7 | -------------------------------------------------------------------------------- /vendor/github.com/daixiang0/gci/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/daixiang0/gci/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .DS_Store 3 | .idea/ 4 | coverage.out 5 | -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/README.md -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/README.md.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/README.md.tpl -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/clone.go -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/contributing.md -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/decorations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/decorations.go -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/dst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/dst.go -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/dstutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/dstutil/util.go -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/print.go -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/readme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/readme.go -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/resolve.go -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/scope.go -------------------------------------------------------------------------------- /vendor/github.com/dave/dst/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dave/dst/walk.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/denis-tingaikin/go-header/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/ATTRIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dlclark/regexp2/ATTRIB -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dlclark/regexp2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/dlclark/regexp2/match.go -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/Makefile -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/README.md -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/assert.go -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/caser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/caser.go -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/convert.go -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/doc.go -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/split.go -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/strcase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/strcase.go -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/unicode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ettle/strcase/unicode.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/structtag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fatih/structtag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fatih/structtag/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fatih/structtag/tags.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fzipp/gocyclo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fzipp/gocyclo/README.md -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/analyze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fzipp/gocyclo/analyze.go -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/recv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fzipp/gocyclo/recv.go -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/fzipp/gocyclo/stats.go -------------------------------------------------------------------------------- /vendor/github.com/go-toolsmith/astequal/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | pkg 3 | src/main 4 | tmp 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-xmlfmt/xmlfmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/go-xmlfmt/xmlfmt/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/bench.sh -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/glob.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/match/any.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/match/max.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/min.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/match/min.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/match/row.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gobwas/glob/readme.md -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gofrs/flock/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gofrs/flock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gofrs/flock/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gofrs/flock/README.md -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gofrs/flock/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gofrs/flock/build.sh -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/gofrs/flock/flock.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golangci/dupl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/golangci/dupl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golangci/dupl/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/golangci/dupl/lib/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golangci/golangci-lint/v2/internal/go/cache/hash_gcil.go: -------------------------------------------------------------------------------- 1 | package cache 2 | 3 | func SetSalt(b []byte) { 4 | hashSalt = b 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/golangci/golines/.gitattributes: -------------------------------------------------------------------------------- 1 | _fixtures/* text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/golangci/golines/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/golangci/golines/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golangci/golines/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/golangci/golines/tags.go -------------------------------------------------------------------------------- /vendor/github.com/golangci/misspell/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/golangci/misspell/url.go -------------------------------------------------------------------------------- /vendor/github.com/golangci/revgrep/.gitignore: -------------------------------------------------------------------------------- 1 | testdata/git 2 | -------------------------------------------------------------------------------- /vendor/github.com/golangci/revgrep/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/golangci/revgrep/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/version6.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/google/uuid/version7.go -------------------------------------------------------------------------------- /vendor/github.com/gostaticanalysis/comment/version.txt: -------------------------------------------------------------------------------- 1 | v1.5.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/gostaticanalysis/forcetypeassert/version.txt: -------------------------------------------------------------------------------- 1 | v0.2.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-cty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/go-cty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/.gitignore: -------------------------------------------------------------------------------- 1 | .idea* -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/.go-version: -------------------------------------------------------------------------------- 1 | 1.24.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/process.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) HashiCorp, Inc. 2 | // SPDX-License-Identifier: MPL-2.0 3 | 4 | package plugin 5 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.go-version: -------------------------------------------------------------------------------- 1 | 1.22.2 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/go-retryablehttp-maintainers 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hc-install/.go-version: -------------------------------------------------------------------------------- 1 | 1.24.2 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hc-install/version/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.2 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/v2/.go-version: -------------------------------------------------------------------------------- 1 | 1.23 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/v2/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/v2/ops.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/v2/pos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/v2/pos.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/v2/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/hcl/v2/spec.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/terraform-json/.go-version: -------------------------------------------------------------------------------- 1 | 1.25 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/terraform-registry-address/.go-version: -------------------------------------------------------------------------------- 1 | 1.19 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/yamux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/yamux/addr.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/yamux/const.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/yamux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/yamux/spec.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/hashicorp/yamux/util.go -------------------------------------------------------------------------------- /vendor/github.com/jgautheron/goconst/.gitignore: -------------------------------------------------------------------------------- 1 | /goconst 2 | -------------------------------------------------------------------------------- /vendor/github.com/jjti/go-spancheck/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/jjti/go-spancheck/doc.go -------------------------------------------------------------------------------- /vendor/github.com/julz/importas/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | importas 3 | -------------------------------------------------------------------------------- /vendor/github.com/julz/importas/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/julz/importas/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/julz/importas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/julz/importas/Makefile -------------------------------------------------------------------------------- /vendor/github.com/julz/importas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/julz/importas/README.md -------------------------------------------------------------------------------- /vendor/github.com/julz/importas/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/julz/importas/config.go -------------------------------------------------------------------------------- /vendor/github.com/julz/importas/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/julz/importas/flags.go -------------------------------------------------------------------------------- /vendor/github.com/karamaru-alpha/copyloopvar/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | copyloopvar 3 | -------------------------------------------------------------------------------- /vendor/github.com/kisielk/errcheck/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/kisielk/errcheck/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/kulti/thelper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/kulti/thelper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/lasiar/canonicalheader/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /vendor/github.com/ldez/exptostd/.gitignore: -------------------------------------------------------------------------------- 1 | /exptostd 2 | .idea 3 | -------------------------------------------------------------------------------- /vendor/github.com/ldez/exptostd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ldez/exptostd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ldez/exptostd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ldez/exptostd/Makefile -------------------------------------------------------------------------------- /vendor/github.com/ldez/exptostd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ldez/exptostd/readme.md -------------------------------------------------------------------------------- /vendor/github.com/ldez/gomoddirectives/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | /gomoddirectives 3 | -------------------------------------------------------------------------------- /vendor/github.com/ldez/grignotin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ldez/grignotin/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ldez/tagliatelle/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | /tagliatelle 3 | notes.md 4 | -------------------------------------------------------------------------------- /vendor/github.com/ldez/tagliatelle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ldez/tagliatelle/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ldez/usetesting/.gitignore: -------------------------------------------------------------------------------- 1 | /usetesting 2 | .idea 3 | -------------------------------------------------------------------------------- /vendor/github.com/ldez/usetesting/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ldez/usetesting/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ldez/usetesting/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ldez/usetesting/Makefile -------------------------------------------------------------------------------- /vendor/github.com/matoous/godox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/matoous/godox/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/matoous/godox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/matoous/godox/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/matoous/godox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/matoous/godox/Makefile -------------------------------------------------------------------------------- /vendor/github.com/matoous/godox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/matoous/godox/README.md -------------------------------------------------------------------------------- /vendor/github.com/matoous/godox/godox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/matoous/godox/godox.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgechev/revive/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/mgechev/revive/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/reflectwalk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/moricho/tparallel/.gitignore: -------------------------------------------------------------------------------- 1 | /tparallel 2 | .envrc 3 | /dist 4 | -------------------------------------------------------------------------------- /vendor/github.com/muesli/termenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/muesli/termenv/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/muesli/termenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/muesli/termenv/README.md -------------------------------------------------------------------------------- /vendor/github.com/muesli/termenv/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/muesli/termenv/color.go -------------------------------------------------------------------------------- /vendor/github.com/muesli/termenv/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/muesli/termenv/copy.go -------------------------------------------------------------------------------- /vendor/github.com/muesli/termenv/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/muesli/termenv/output.go -------------------------------------------------------------------------------- /vendor/github.com/muesli/termenv/screen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/muesli/termenv/screen.go -------------------------------------------------------------------------------- /vendor/github.com/muesli/termenv/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/muesli/termenv/style.go -------------------------------------------------------------------------------- /vendor/github.com/nakabonne/nestif/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/nakabonne/nestif/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/nunnatsa/ginkgolinter/.gitignore: -------------------------------------------------------------------------------- 1 | ginkgolinter 2 | bin/ 3 | e2e 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/oklog/run/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/oklog/run/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/oklog/run/README.md -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/actors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/oklog/run/actors.go -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/oklog/run/group.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/pelletier/go-toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/v2/internal/tracker/tracker.go: -------------------------------------------------------------------------------- 1 | package tracker 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/prometheus/procfs/arp.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/prometheus/procfs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/quasilyte/gogrep/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | coverage.txt 4 | bin 5 | -------------------------------------------------------------------------------- /vendor/github.com/quasilyte/gogrep/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/quasilyte/gogrep/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/raeperd/recvcheck/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | coverage.txt 3 | /recvcheck 4 | -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/README.md -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/grapheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/grapheme.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/line.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/linerules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/linerules.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/sentence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/sentence.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/step.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/width.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/word.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/wordrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/rivo/uniseg/wordrules.go -------------------------------------------------------------------------------- /vendor/github.com/ryancurrah/gomodguard/.dockerignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /vendor/github.com/shurcooL/githubv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/shurcooL/githubv4/doc.go -------------------------------------------------------------------------------- /vendor/github.com/shurcooL/graphql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/shurcooL/graphql/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/shurcooL/graphql/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/shurcooL/graphql/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sonatard/noctx/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | /noctx 3 | -------------------------------------------------------------------------------- /vendor/github.com/sonatard/noctx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/sonatard/noctx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sonatard/noctx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/sonatard/noctx/Makefile -------------------------------------------------------------------------------- /vendor/github.com/sonatard/noctx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/sonatard/noctx/README.md -------------------------------------------------------------------------------- /vendor/github.com/sonatard/noctx/noctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/sonatard/noctx/noctx.go -------------------------------------------------------------------------------- /vendor/github.com/sonatard/noctx/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/sonatard/noctx/types.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/symlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/symlink.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/unionFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/unionFile.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/bool_func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/errors.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/text.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/fs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/logger.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/spf13/viper/watch.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/stretchr/objx/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/stretchr/objx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/stretchr/objx/README.md -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env.invalid: -------------------------------------------------------------------------------- 1 | lol$wut 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | profile.cov 5 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/subosito/gotenv/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/tetafro/godot/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/tetafro/godot/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/tetafro/godot/Makefile -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/tetafro/godot/README.md -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/tetafro/godot/checks.go -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/tetafro/godot/comment.go -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/tetafro/godot/file.go -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/godot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/tetafro/godot/godot.go -------------------------------------------------------------------------------- /vendor/github.com/tommy-muehle/go-mnd/v2/checks/checks.go: -------------------------------------------------------------------------------- 1 | package checks 2 | 3 | const reportMsg = "Magic number: %v, in <%s> detected" 4 | -------------------------------------------------------------------------------- /vendor/github.com/ultraware/funlen/.golangci.yml: -------------------------------------------------------------------------------- 1 | run: 2 | timeout: 5m 3 | -------------------------------------------------------------------------------- /vendor/github.com/ultraware/funlen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/ultraware/funlen/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/uudashr/gocognit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/uudashr/gocognit/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/uudashr/gocognit/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/uudashr/gocognit/doc.go -------------------------------------------------------------------------------- /vendor/github.com/uudashr/gocognit/recv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/uudashr/gocognit/recv.go -------------------------------------------------------------------------------- /vendor/github.com/uudashr/iface/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/uudashr/iface/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/vmihailenco/msgpack/v5/.prettierrc: -------------------------------------------------------------------------------- 1 | semi: false 2 | singleQuote: true 3 | proseWrap: always 4 | printWidth: 100 5 | -------------------------------------------------------------------------------- /vendor/github.com/vmihailenco/msgpack/v5/commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] } 2 | -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/README.md -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/caps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/caps.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/capvals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/capvals.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/color.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/dec.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/load.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/param.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/stack.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/terminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/xo/terminfo/terminfo.go -------------------------------------------------------------------------------- /vendor/github.com/yagipy/maintidx/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | bin 3 | -------------------------------------------------------------------------------- /vendor/github.com/yagipy/maintidx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/yagipy/maintidx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/yagipy/maintidx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/yagipy/maintidx/Makefile -------------------------------------------------------------------------------- /vendor/github.com/zclconf/go-cty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/github.com/zclconf/go-cty/LICENSE -------------------------------------------------------------------------------- /vendor/gitlab.com/bosi/decorder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gitlab.com/bosi/decorder/.gitignore -------------------------------------------------------------------------------- /vendor/gitlab.com/bosi/decorder/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gitlab.com/bosi/decorder/LICENSE.md -------------------------------------------------------------------------------- /vendor/gitlab.com/bosi/decorder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gitlab.com/bosi/decorder/Makefile -------------------------------------------------------------------------------- /vendor/gitlab.com/bosi/decorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gitlab.com/bosi/decorder/README.md -------------------------------------------------------------------------------- /vendor/go-simpler.org/musttag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/musttag/LICENSE -------------------------------------------------------------------------------- /vendor/go-simpler.org/musttag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/musttag/Makefile -------------------------------------------------------------------------------- /vendor/go-simpler.org/musttag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/musttag/README.md -------------------------------------------------------------------------------- /vendor/go-simpler.org/musttag/builtins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/musttag/builtins.go -------------------------------------------------------------------------------- /vendor/go-simpler.org/musttag/musttag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/musttag/musttag.go -------------------------------------------------------------------------------- /vendor/go-simpler.org/musttag/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/musttag/utils.go -------------------------------------------------------------------------------- /vendor/go-simpler.org/sloglint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/sloglint/LICENSE -------------------------------------------------------------------------------- /vendor/go-simpler.org/sloglint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/sloglint/Makefile -------------------------------------------------------------------------------- /vendor/go-simpler.org/sloglint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/sloglint/README.md -------------------------------------------------------------------------------- /vendor/go-simpler.org/sloglint/sloglint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go-simpler.org/sloglint/sloglint.go -------------------------------------------------------------------------------- /vendor/go.augendre.info/arangolint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.augendre.info/arangolint/LICENSE -------------------------------------------------------------------------------- /vendor/go.augendre.info/fatcontext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.augendre.info/fatcontext/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/automaxprocs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/automaxprocs/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/multierr/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/multierr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/zapcore/clock.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/zapcore/entry.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/zapcore/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/zapcore/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/zapcore/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mlkem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/ssh/mlkem.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/mod/modfile/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/mod/modfile/rule.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/work.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/mod/modfile/work.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/cfg/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/tools/go/cfg/cfg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/tools/go/ssa/TODO -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/tools/go/ssa/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/tools/go/ssa/dom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/ssa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/golang.org/x/tools/go/ssa/ssa.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/.editorconfig -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/.golangci.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/data_source.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/LICENSE -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/LICENSE -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/doc.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/dom.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/emit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/emit.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/func.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/html.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/lift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/lift.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/mode.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/ssa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/ssa.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/go/ir/util.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/simple/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/honnef.co/go/tools/simple/doc.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/mvdan.cc/gofumpt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/mvdan.cc/gofumpt/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/gofumpt/LICENSE.google: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/mvdan.cc/gofumpt/LICENSE.google -------------------------------------------------------------------------------- /vendor/mvdan.cc/unparam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/mvdan.cc/unparam/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/unparam/check/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/vendor/mvdan.cc/unparam/check/check.go -------------------------------------------------------------------------------- /website/docs/d/app.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/app.html.markdown -------------------------------------------------------------------------------- /website/docs/d/app_token.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/app_token.html.markdown -------------------------------------------------------------------------------- /website/docs/d/branch.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/branch.html.markdown -------------------------------------------------------------------------------- /website/docs/d/enterprise.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/enterprise.html.markdown -------------------------------------------------------------------------------- /website/docs/d/ip_ranges.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/ip_ranges.html.markdown -------------------------------------------------------------------------------- /website/docs/d/membership.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/membership.html.markdown -------------------------------------------------------------------------------- /website/docs/d/ref.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/ref.html.markdown -------------------------------------------------------------------------------- /website/docs/d/release.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/release.html.markdown -------------------------------------------------------------------------------- /website/docs/d/repository.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/repository.html.markdown -------------------------------------------------------------------------------- /website/docs/d/rest_api.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/rest_api.html.markdown -------------------------------------------------------------------------------- /website/docs/d/ssh_keys.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/ssh_keys.html.markdown -------------------------------------------------------------------------------- /website/docs/d/team.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/team.html.markdown -------------------------------------------------------------------------------- /website/docs/d/tree.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/tree.html.markdown -------------------------------------------------------------------------------- /website/docs/d/user.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/user.html.markdown -------------------------------------------------------------------------------- /website/docs/d/users.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/d/users.html.markdown -------------------------------------------------------------------------------- /website/docs/index.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/index.html.markdown -------------------------------------------------------------------------------- /website/docs/r/branch.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/r/branch.html.markdown -------------------------------------------------------------------------------- /website/docs/r/issue.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/r/issue.html.markdown -------------------------------------------------------------------------------- /website/docs/r/membership.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/r/membership.html.markdown -------------------------------------------------------------------------------- /website/docs/r/release.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/r/release.html.markdown -------------------------------------------------------------------------------- /website/docs/r/repository.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/r/repository.html.markdown -------------------------------------------------------------------------------- /website/docs/r/team.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/docs/r/team.html.markdown -------------------------------------------------------------------------------- /website/github.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integrations/terraform-provider-github/HEAD/website/github.erb --------------------------------------------------------------------------------