way_of_working-code_linting-hdi 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.mega-linter.yml +109 -61
- data/CHANGELOG.md +16 -1
- data/README.md +1 -1
- data/code_safety.yml +22 -26
- data/docs/way_of_working/code-linting/index.md +2 -0
- data/lib/way_of_working/code_linting/hdi/plugin.rb +12 -0
- data/lib/way_of_working/code_linting/hdi/templates/docs/way_of_working/code-linting/index.md.tt +2 -0
- data/lib/way_of_working/code_linting/hdi/version.rb +1 -1
- data/lib/way_of_working/code_linting/hdi.rb +0 -1
- metadata +5 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71fc9e493568cdf769f24bb5c0abbf0fdfe9aaf348c375aafef4c19dec9a5169
|
|
4
|
+
data.tar.gz: e80cc2d5e75f23b8c939b43da5b380c4c63fb6c513d11332aeb4338b3ec8d54a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2df9bf106916828237574386350f7afd39fe59edacb0842eb6308ebc88c16934fcc0aef90ff740cf93701fd2bd6fc35ebb7dfd3d9fe104c83e97df9264626ddd
|
|
7
|
+
data.tar.gz: 3204b1e3ad38bb0180e183fb15108446c139cce32750bd6df220f64bd59c6195825be0777133b7266618d2c7af329784f7156df0610c32c3f651c5998c00fa8c
|
data/.mega-linter.yml
CHANGED
|
@@ -3,65 +3,127 @@
|
|
|
3
3
|
# See all available variables at https://megalinter.io/configuration/
|
|
4
4
|
# and in linters documentation
|
|
5
5
|
|
|
6
|
-
APPLY_FIXES: none
|
|
7
|
-
ENABLE_LINTERS:
|
|
8
|
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
- BASH_SHELLCHECK
|
|
13
|
-
- BASH_SHFMT
|
|
14
|
-
- BICEP_BICEP_LINTER
|
|
6
|
+
APPLY_FIXES: none # all, none, or list of linter keys
|
|
7
|
+
ENABLE_LINTERS: # All other linters will be disabled by default
|
|
8
|
+
### Languages
|
|
9
|
+
- BASH_EXEC # in Super-Linter
|
|
10
|
+
- BASH_SHELLCHECK # in Super-Linter
|
|
11
|
+
- BASH_SHFMT # in Super-Linter
|
|
15
12
|
- C_CLANG_FORMAT
|
|
16
|
-
- C_CPPCHECK
|
|
17
13
|
- C_CPPLINT
|
|
18
|
-
-
|
|
19
|
-
-
|
|
14
|
+
# - CLOJURE_CLJ_KONDO # in Super-Linter
|
|
15
|
+
# - CLOJURE_CLJSTYLE
|
|
16
|
+
- COFFEE_COFFEELINT # in Super-Linter
|
|
20
17
|
- CPP_CLANG_FORMAT
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
- JSON_ESLINT_PLUGIN_JSONC
|
|
36
|
-
- JSON_JSONLINT
|
|
37
|
-
- JSON_NPM_PACKAGE_JSON_LINT
|
|
38
|
-
- JSON_PRETTIER
|
|
39
|
-
- JSON_V8R
|
|
18
|
+
- CPP_CPPLINT # in Super-Linter
|
|
19
|
+
- CSHARP_CSHARPIER
|
|
20
|
+
- CSHARP_DOTNET_FORMAT # in Super-Linter
|
|
21
|
+
- CSHARP_ROSLYNATOR
|
|
22
|
+
- DART_DARTANALYZER # in Super-Linter
|
|
23
|
+
- GO_GOLANGCI_LINT # in Super-Linter
|
|
24
|
+
- GO_REVIVE
|
|
25
|
+
# - GROOVY_NPM_GROOVY_LINT # in Super-Linter
|
|
26
|
+
- JAVA_CHECKSTYLE # in Super-Linter
|
|
27
|
+
- JAVA_PMD
|
|
28
|
+
- JAVASCRIPT_ES # in Super-Linter
|
|
29
|
+
# - JAVASCRIPT_PRETTIER
|
|
30
|
+
- JAVASCRIPT_STANDARD # in Super-Linter
|
|
31
|
+
- JSX_ESLINT
|
|
40
32
|
- KOTLIN_DETEKT
|
|
41
|
-
- KOTLIN_KTLINT
|
|
33
|
+
- KOTLIN_KTLINT # in Super-Linter
|
|
34
|
+
# - LUA_LUACHECK # in Super-Linter
|
|
35
|
+
# - LUA_SELENE
|
|
36
|
+
# - LUA_STYLUA
|
|
42
37
|
- MAKEFILE_CHECKMAKE
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
38
|
+
# - PERL_PERLCRITIC # in Super-Linter
|
|
39
|
+
# - PHP_BUILTIN
|
|
40
|
+
# - PHP_PHPCS # in Super-Linter
|
|
41
|
+
# - PHP_PHPCSFIXER
|
|
42
|
+
# - PHP_PHPLINT # in Super-Linter
|
|
43
|
+
# - PHP_PHPSTAN # in Super-Linter
|
|
44
|
+
# - PHP_PSALM # in Super-Linter
|
|
45
|
+
# - POWERSHELL_POWERSHELL
|
|
46
|
+
# - POWERSHELL_POWERSHELL_FORMATTER
|
|
49
47
|
- PYTHON_BANDIT
|
|
50
|
-
- PYTHON_BLACK
|
|
51
|
-
- PYTHON_FLAKE8
|
|
52
|
-
- PYTHON_ISORT
|
|
48
|
+
- PYTHON_BLACK # in Super-Linter
|
|
49
|
+
- PYTHON_FLAKE8 # in Super-Linter
|
|
50
|
+
- PYTHON_ISORT # in Super-Linter
|
|
53
51
|
- PYTHON_MYPY
|
|
54
|
-
- PYTHON_PYLINT
|
|
52
|
+
- PYTHON_PYLINT # in Super-Linter
|
|
55
53
|
- PYTHON_PYRIGHT
|
|
56
54
|
- PYTHON_RUFF
|
|
57
|
-
-
|
|
58
|
-
-
|
|
55
|
+
- R_LINTR # in Super-Linter
|
|
56
|
+
# - RAKU_RAKU # in Super-Linter
|
|
57
|
+
# - RUBY_RUBOCOP # in Super-Linter
|
|
58
|
+
- RUST_CLIPPY # in Super-Linter
|
|
59
|
+
# - SALESFORCE_LIGHTNING_FLOW_SCANNER
|
|
60
|
+
# - SALESFORCE_SFDX_SCANNER_APEX
|
|
61
|
+
# - SALESFORCE_SFDX_SCANNER_AURA
|
|
62
|
+
# - SALESFORCE_SFDX_SCANNER_LWC
|
|
63
|
+
- SCALA_SCALAFIX
|
|
64
|
+
- SQL_SQLFLUFF # in Super-Linter
|
|
65
|
+
- SQL_TSQLLINT
|
|
66
|
+
- SWIFT_SWIFTLINT
|
|
67
|
+
- TSX_ESLINT
|
|
68
|
+
- TYPESCRIPT_ES # in Super-Linter
|
|
69
|
+
# - TYPESCRIPT_PRETTIER
|
|
70
|
+
- TYPESCRIPT_STANDARD # in Super-Linter
|
|
71
|
+
# - VBDOTNET_DOTNET_FORMAT
|
|
72
|
+
|
|
73
|
+
### Formats
|
|
74
|
+
- CSS_STYLELINT # in Super-Linter
|
|
75
|
+
- ENV_DOTENV_LINTER # in Super-Linter
|
|
76
|
+
# - GRAPHQL_GRAPHQL_SCHEMA_LINTER
|
|
77
|
+
# - HTML_DJLINT # Refuses to see config file
|
|
78
|
+
- HTML_HTMLHINT # in Super-Linter
|
|
79
|
+
- JSON_ESLINT_PLUGIN_JSONC # in Super-Linter
|
|
80
|
+
- JSON_JSONLINT
|
|
81
|
+
- JSON_NPM_PACKAGE_JSON_LINT
|
|
82
|
+
# - JSON_PRETTIER
|
|
83
|
+
- JSON_V8R
|
|
84
|
+
# - LATEX_CHKTEX # in Super-Linter
|
|
85
|
+
- MARKDOWN_MARKDOWNLINT # in Super-Linter
|
|
86
|
+
- MARKDOWN_MARKDOWN_LINK_CHECK
|
|
87
|
+
- MARKDOWN_MARKDOWN_TABLE_FORMATTER
|
|
88
|
+
- MARKDOWN_REMARK_LINT
|
|
89
|
+
# - PROTOBUF_PROTOLINT # in Super-Linter
|
|
90
|
+
# - RST_RSTCHECK
|
|
91
|
+
# - RST_RSTFMT
|
|
92
|
+
# - RST_RST_LINT
|
|
93
|
+
- XML_XMLLINT # in Super-Linter
|
|
94
|
+
# - YAML_PRETTIER
|
|
95
|
+
- YAML_V8R
|
|
96
|
+
- YAML_YAMLLINT # in Super-Linter
|
|
97
|
+
|
|
98
|
+
### Tooling
|
|
99
|
+
- ACTION_ACTIONLINT # in Super-Linter
|
|
100
|
+
- ANSIBLE_ANSIBLE_LINT # in Super-Linter
|
|
101
|
+
- API_SPECTRAL
|
|
102
|
+
- ARM_ARM_TTK # in Super-Linter
|
|
103
|
+
# - BICEP_BICEP_LINTER
|
|
104
|
+
- CLOUDFORMATION_CFN_LINT # in Super-Linter
|
|
105
|
+
- DOCKERFILE_HADOLINT # in Super-Linter
|
|
106
|
+
- EDITORCONFIG_EDITORCONFIG_CHECKER # in Super-Linter
|
|
107
|
+
# - GHERKIN_GHERKIN_LINT # in Super-Linter
|
|
108
|
+
- KUBERNETES_HELM
|
|
109
|
+
- KUBERNETES_KUBECONFORM
|
|
110
|
+
- KUBERNETES_KUBESCAPE
|
|
111
|
+
- PUPPET_PUPPET_LINT
|
|
112
|
+
# - SNAKEMAKE_LINT # in Super-Linter
|
|
113
|
+
# - SNAKEMAKE_SNAKEFMT # in Super-Linter
|
|
114
|
+
# - TEKTON_TEKTON_LINT # in Super-Linter
|
|
115
|
+
- TERRAFORM_TERRAFORM_FMT # in Super-Linter
|
|
116
|
+
- TERRAFORM_TERRAGRUNT # in Super-Linter
|
|
117
|
+
- TERRAFORM_TERRASCAN # in Super-Linter
|
|
118
|
+
- TERRAFORM_TFLINT # in Super-Linter
|
|
119
|
+
|
|
120
|
+
### Code quality checkers
|
|
121
|
+
- COPYPASTE_JSCPD # in Super-Linter
|
|
59
122
|
- REPOSITORY_CHECKOV
|
|
60
123
|
- REPOSITORY_DEVSKIM
|
|
61
124
|
- REPOSITORY_DUSTILOCK
|
|
62
125
|
- REPOSITORY_GIT_DIFF
|
|
63
|
-
- REPOSITORY_GITLEAKS
|
|
64
|
-
- REPOSITORY_GOODCHECK
|
|
126
|
+
- REPOSITORY_GITLEAKS # in Super-Linter
|
|
65
127
|
- REPOSITORY_GRYPE
|
|
66
128
|
- REPOSITORY_KICS
|
|
67
129
|
- REPOSITORY_LS_LINT
|
|
@@ -71,24 +133,10 @@ ENABLE_LINTERS: # All other linters will be disabled by default
|
|
|
71
133
|
- REPOSITORY_TRIVY
|
|
72
134
|
- REPOSITORY_TRIVY_SBOM
|
|
73
135
|
- REPOSITORY_TRUFFLEHOG
|
|
136
|
+
# - SPELL_CSPELL
|
|
74
137
|
- SPELL_LYCHEE
|
|
75
|
-
- SPELL_MISSPELL
|
|
76
138
|
- SPELL_PROSELINT
|
|
77
139
|
- SPELL_VALE
|
|
78
|
-
- SQL_SQL_LINT
|
|
79
|
-
- SQL_SQLFLUFF
|
|
80
|
-
- SQL_TSQLLINT
|
|
81
|
-
- SWIFT_SWIFTLINT
|
|
82
|
-
- TERRAFORM_CHECKOV
|
|
83
|
-
- TERRAFORM_KICS
|
|
84
|
-
- TERRAFORM_TERRAFORM_FMT
|
|
85
|
-
- TERRAFORM_TERRAGRUNT
|
|
86
|
-
- TERRAFORM_TERRASCAN
|
|
87
|
-
- TERRAFORM_TFLINT
|
|
88
|
-
- XML_XMLLINT
|
|
89
|
-
- YAML_PRETTIER
|
|
90
|
-
- YAML_V8R
|
|
91
|
-
- YAML_YAMLLINT
|
|
92
140
|
|
|
93
141
|
SHOW_ELAPSED_TIME: false
|
|
94
142
|
FILEIO_REPORTER: false
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [1.1.2] - 2026-06-08
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Bumped the `way_of_working` dependency to `~> 2.1`
|
|
16
|
+
|
|
17
|
+
## [1.1.1] - 2025-11-28
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Updated GitHub rule signatures
|
|
22
|
+
- Removed Zeitwerk ignore to make it happier
|
|
23
|
+
|
|
11
24
|
## [1.1.0] - 2025-10-15
|
|
12
25
|
|
|
13
26
|
### Added
|
|
@@ -30,6 +43,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
30
43
|
- Added MegaLinter for linting common file formats with generator command and rake task
|
|
31
44
|
- Added a GitHub audit rule to check that linting is used and configured correctly
|
|
32
45
|
|
|
33
|
-
[unreleased]: https://github.com/HealthDataInsight/way_of_working-code_linting-hdi/compare/v1.1.
|
|
46
|
+
[unreleased]: https://github.com/HealthDataInsight/way_of_working-code_linting-hdi/compare/v1.1.2...HEAD
|
|
47
|
+
[1.1.2]: https://github.com/HealthDataInsight/way_of_working-code_linting-hdi/compare/v1.1.1...v1.1.2
|
|
48
|
+
[1.1.1]: https://github.com/HealthDataInsight/way_of_working-code_linting-hdi/compare/v1.0.0...v1.1.1
|
|
34
49
|
[1.1.0]: https://github.com/HealthDataInsight/way_of_working-code_linting-hdi/compare/v1.0.0...v1.1.0
|
|
35
50
|
[1.0.0]: https://github.com/HealthDataInsight/way_of_working-code_linting-hdi/releases/tag/v1.0.0
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# WayOfWorking::CodeLinting::Hdi
|
|
2
2
|
|
|
3
3
|
<!-- Way of Working: Main Badge Holder Start -->
|
|
4
|
-

|
|
5
5
|
<!-- Way of Working: Additional Badge Holder Start -->
|
|
6
6
|
<!-- Way of Working: Badge Holder End -->
|
|
7
7
|
|
data/code_safety.yml
CHANGED
|
@@ -11,7 +11,7 @@ file safety:
|
|
|
11
11
|
".github/linters/.markdown-link-check.json":
|
|
12
12
|
comments:
|
|
13
13
|
reviewed_by: timgentry
|
|
14
|
-
safe_revision:
|
|
14
|
+
safe_revision: 9c246b038991ac78d79effd5f960e90a6a3e4547
|
|
15
15
|
".github/linters/rubocop_defaults.yml":
|
|
16
16
|
comments:
|
|
17
17
|
reviewed_by: shilpigoeldev
|
|
@@ -19,15 +19,15 @@ file safety:
|
|
|
19
19
|
".github/workflows/inclusive-language.yml":
|
|
20
20
|
comments:
|
|
21
21
|
reviewed_by: timgentry
|
|
22
|
-
safe_revision:
|
|
22
|
+
safe_revision: 9c246b038991ac78d79effd5f960e90a6a3e4547
|
|
23
23
|
".github/workflows/main.yml":
|
|
24
24
|
comments:
|
|
25
25
|
reviewed_by: timgentry
|
|
26
|
-
safe_revision:
|
|
26
|
+
safe_revision: 8fff2a6901fc08302f9144a621bfb855c8dd080e
|
|
27
27
|
".github/workflows/mega-linter.yml":
|
|
28
28
|
comments:
|
|
29
29
|
reviewed_by: timgentry
|
|
30
|
-
safe_revision:
|
|
30
|
+
safe_revision: 9c246b038991ac78d79effd5f960e90a6a3e4547
|
|
31
31
|
".gitignore":
|
|
32
32
|
comments:
|
|
33
33
|
reviewed_by: timgentry
|
|
@@ -35,23 +35,23 @@ file safety:
|
|
|
35
35
|
".mega-linter.yml":
|
|
36
36
|
comments:
|
|
37
37
|
reviewed_by: timgentry
|
|
38
|
-
safe_revision:
|
|
38
|
+
safe_revision: 9c246b038991ac78d79effd5f960e90a6a3e4547
|
|
39
39
|
".rubocop":
|
|
40
40
|
comments:
|
|
41
41
|
reviewed_by: shilpigoeldev
|
|
42
42
|
safe_revision: b89ef4afd67d02b6f6ff323bb9accde2dcf2686d
|
|
43
43
|
CHANGELOG.md:
|
|
44
44
|
comments:
|
|
45
|
-
reviewed_by:
|
|
46
|
-
safe_revision:
|
|
45
|
+
reviewed_by: timgentry
|
|
46
|
+
safe_revision: 8fff2a6901fc08302f9144a621bfb855c8dd080e
|
|
47
47
|
Gemfile:
|
|
48
48
|
comments:
|
|
49
49
|
reviewed_by: timgentry
|
|
50
50
|
safe_revision: 82687366222b885cbc41449f5bbd30fe9440cd4c
|
|
51
51
|
Gemfile.lock:
|
|
52
52
|
comments:
|
|
53
|
-
reviewed_by:
|
|
54
|
-
safe_revision:
|
|
53
|
+
reviewed_by: timgentry
|
|
54
|
+
safe_revision: 8fff2a6901fc08302f9144a621bfb855c8dd080e
|
|
55
55
|
LICENSE.txt:
|
|
56
56
|
comments:
|
|
57
57
|
reviewed_by: shilpigoeldev
|
|
@@ -59,7 +59,7 @@ file safety:
|
|
|
59
59
|
README.md:
|
|
60
60
|
comments:
|
|
61
61
|
reviewed_by: timgentry
|
|
62
|
-
safe_revision:
|
|
62
|
+
safe_revision: 8fff2a6901fc08302f9144a621bfb855c8dd080e
|
|
63
63
|
Rakefile:
|
|
64
64
|
comments:
|
|
65
65
|
reviewed_by: shilpigoeldev
|
|
@@ -75,7 +75,7 @@ file safety:
|
|
|
75
75
|
docs/way_of_working/code-linting/index.md:
|
|
76
76
|
comments:
|
|
77
77
|
reviewed_by: timgentry
|
|
78
|
-
safe_revision:
|
|
78
|
+
safe_revision: 9c246b038991ac78d79effd5f960e90a6a3e4547
|
|
79
79
|
docs/way_of_working/code-linting/linters.md:
|
|
80
80
|
comments:
|
|
81
81
|
reviewed_by: timgentry
|
|
@@ -83,7 +83,7 @@ file safety:
|
|
|
83
83
|
lib/way_of_working/code_linting/hdi.rb:
|
|
84
84
|
comments:
|
|
85
85
|
reviewed_by: timgentry
|
|
86
|
-
safe_revision:
|
|
86
|
+
safe_revision: 9c246b038991ac78d79effd5f960e90a6a3e4547
|
|
87
87
|
lib/way_of_working/code_linting/hdi/generators/concerns/github_metadata.rb:
|
|
88
88
|
comments:
|
|
89
89
|
reviewed_by: shilpigoeldev
|
|
@@ -114,8 +114,8 @@ file safety:
|
|
|
114
114
|
safe_revision: b89ef4afd67d02b6f6ff323bb9accde2dcf2686d
|
|
115
115
|
lib/way_of_working/code_linting/hdi/plugin.rb:
|
|
116
116
|
comments:
|
|
117
|
-
reviewed_by:
|
|
118
|
-
safe_revision:
|
|
117
|
+
reviewed_by: timgentry
|
|
118
|
+
safe_revision: 9c246b038991ac78d79effd5f960e90a6a3e4547
|
|
119
119
|
lib/way_of_working/code_linting/hdi/supported_linter.rb:
|
|
120
120
|
comments:
|
|
121
121
|
reviewed_by: shilpigoeldev
|
|
@@ -147,15 +147,15 @@ file safety:
|
|
|
147
147
|
lib/way_of_working/code_linting/hdi/templates/docs/way_of_working/code-linting/index.md.tt:
|
|
148
148
|
comments:
|
|
149
149
|
reviewed_by: timgentry
|
|
150
|
-
safe_revision:
|
|
150
|
+
safe_revision: 9c246b038991ac78d79effd5f960e90a6a3e4547
|
|
151
151
|
lib/way_of_working/code_linting/hdi/templates/docs/way_of_working/code-linting/linters.md.tt:
|
|
152
152
|
comments:
|
|
153
153
|
reviewed_by: shilpigoeldev
|
|
154
154
|
safe_revision: 0c7aeda9a9a90b16cea0f1921e29b21d4f27e5ac
|
|
155
155
|
lib/way_of_working/code_linting/hdi/version.rb:
|
|
156
156
|
comments:
|
|
157
|
-
reviewed_by:
|
|
158
|
-
safe_revision:
|
|
157
|
+
reviewed_by: timgentry
|
|
158
|
+
safe_revision: 8fff2a6901fc08302f9144a621bfb855c8dd080e
|
|
159
159
|
test/resources/XcodeApp.xcodeproj/project.pbxproj:
|
|
160
160
|
comments:
|
|
161
161
|
reviewed_by: shilpigoeldev
|
|
@@ -164,10 +164,6 @@ file safety:
|
|
|
164
164
|
comments:
|
|
165
165
|
reviewed_by: shilpigoeldev
|
|
166
166
|
safe_revision: b89ef4afd67d02b6f6ff323bb9accde2dcf2686d
|
|
167
|
-
test/way_of_working/audit_github_stub_classes.rb:
|
|
168
|
-
comments:
|
|
169
|
-
reviewed_by: timgentry
|
|
170
|
-
safe_revision: 82687366222b885cbc41449f5bbd30fe9440cd4c
|
|
171
167
|
test/way_of_working/code_linting/hdi/generators/document_linters_test.rb:
|
|
172
168
|
comments:
|
|
173
169
|
reviewed_by: shilpigoeldev
|
|
@@ -182,12 +178,12 @@ file safety:
|
|
|
182
178
|
safe_revision: 0c7aeda9a9a90b16cea0f1921e29b21d4f27e5ac
|
|
183
179
|
test/way_of_working/code_linting/hdi/github_audit_rule_test.rb:
|
|
184
180
|
comments:
|
|
185
|
-
reviewed_by:
|
|
186
|
-
safe_revision:
|
|
181
|
+
reviewed_by: timgentry
|
|
182
|
+
safe_revision: 8fff2a6901fc08302f9144a621bfb855c8dd080e
|
|
187
183
|
test/way_of_working/code_linting/hdi/zeitwerk_loader_test.rb:
|
|
188
184
|
comments:
|
|
189
|
-
reviewed_by:
|
|
190
|
-
safe_revision:
|
|
185
|
+
reviewed_by: timgentry
|
|
186
|
+
safe_revision: 8fff2a6901fc08302f9144a621bfb855c8dd080e
|
|
191
187
|
test/way_of_working/code_linting/hdi_test.rb:
|
|
192
188
|
comments:
|
|
193
189
|
reviewed_by: shilpigoeldev
|
|
@@ -195,4 +191,4 @@ file safety:
|
|
|
195
191
|
way_of_working-code_linting-hdi.gemspec:
|
|
196
192
|
comments:
|
|
197
193
|
reviewed_by: timgentry
|
|
198
|
-
safe_revision:
|
|
194
|
+
safe_revision: 8fff2a6901fc08302f9144a621bfb855c8dd080e
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: way_of_working-code_linting-hdi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Gentry
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: octokit
|
|
@@ -30,14 +29,14 @@ dependencies:
|
|
|
30
29
|
requirements:
|
|
31
30
|
- - "~>"
|
|
32
31
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.
|
|
32
|
+
version: '2.1'
|
|
34
33
|
type: :runtime
|
|
35
34
|
prerelease: false
|
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
36
|
requirements:
|
|
38
37
|
- - "~>"
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2.
|
|
39
|
+
version: '2.1'
|
|
41
40
|
- !ruby/object:Gem::Dependency
|
|
42
41
|
name: zeitwerk
|
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -52,7 +51,6 @@ dependencies:
|
|
|
52
51
|
- - "~>"
|
|
53
52
|
- !ruby/object:Gem::Version
|
|
54
53
|
version: 2.6.18
|
|
55
|
-
description:
|
|
56
54
|
email:
|
|
57
55
|
- 52189+timgentry@users.noreply.github.com
|
|
58
56
|
executables: []
|
|
@@ -97,7 +95,6 @@ metadata:
|
|
|
97
95
|
homepage_uri: https://github.com/HealthDataInsight/way_of_working-code_linting-hdi
|
|
98
96
|
source_code_uri: https://github.com/HealthDataInsight/way_of_working-code_linting-hdi
|
|
99
97
|
changelog_uri: https://github.com/HealthDataInsight/way_of_working-code_linting-hdi/blob/main/CHANGELOG.md
|
|
100
|
-
post_install_message:
|
|
101
98
|
rdoc_options: []
|
|
102
99
|
require_paths:
|
|
103
100
|
- lib
|
|
@@ -112,8 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
112
109
|
- !ruby/object:Gem::Version
|
|
113
110
|
version: '0'
|
|
114
111
|
requirements: []
|
|
115
|
-
rubygems_version:
|
|
116
|
-
signing_key:
|
|
112
|
+
rubygems_version: 4.0.10
|
|
117
113
|
specification_version: 4
|
|
118
114
|
summary: Way of Working plugin for HDI code linting using MegaLinter and Rubocop
|
|
119
115
|
test_files: []
|