Skip to content

Commit 955d3e4

Browse files
committed
Merge branch 'feature-createorganizationalunit' of github.com:ethanBaird/aws-deployment-framework into feature-createorganizationalunit
2 parents 4798b26 + db464a0 commit 955d3e4

File tree

310 files changed

+2665
-757
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

310 files changed

+2665
-757
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,6 @@ max_line_length = 120
5656
indent_style = tab
5757
indent_size = 4
5858
tab_width = 4
59+
60+
[*.sh]
61+
space_redirects = true

.markdownlint.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"emphasis-style": {
33
"style": "consistent"
44
},
5-
"no-duplicate-header": {
6-
"allow_different_nesting": true
5+
"no-duplicate-heading": {
6+
"siblings_only": true
77
},
88
"heading-style": {
9-
"style": "consistent"
9+
"style": "atx"
1010
},
1111
"ul-style": {
1212
"style": "dash"
@@ -28,7 +28,9 @@
2828
"ol-prefix": {
2929
"style": "one_or_ordered"
3030
},
31-
"no-inline-html": true,
31+
"no-inline-html": {
32+
"allowed_elements": []
33+
},
3234
"no-emphasis-as-heading": {
3335
"punctuation": ".,;:!。,;:"
3436
},

.mega-linter.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ APPLY_FIXES: none
1010
# If you use ENABLE_LINTERS variable, all other linters will be disabled by default
1111
ENABLE_LINTERS:
1212
- BASH_EXEC
13+
- BASH_SHFMT
1314
- CLOUDFORMATION_CFN_LINT
1415
- DOCKERFILE_HADOLINT
1516
- EDITORCONFIG_EDITORCONFIG_CHECKER
@@ -30,16 +31,20 @@ FILEIO_REPORTER: false
3031

3132
# Install plugin for list handling.
3233
JSON_PRETTIER_PRE_COMMANDS:
33-
- command: "npm install [email protected].0"
34+
- command: "npm install [email protected].4"
3435
cwd: "workspace"
3536

3637
CLOUDFORMATION_CFN_LINT_CONFIG_FILE: '.cfnlintrc'
3738
CLOUDFORMATION_CFN_LINT_FILE_EXTENSIONS: [".yml", ".yaml"]
39+
3840
EDITORCONFIG_EDITORCONFIG_CHECKER_CONFIG_FILE: '.ecrc.json'
41+
3942
MARKDOWN_MARKDOWN_LINK_CHECK_ARGUMENTS: '-q'
4043
MARKDOWN_MARKDOWNLINT_DISABLE_ERRORS: false
44+
4145
SPELL_CSPELL_ARGUMENTS: '--gitignore --no-progress --show-suggestions'
4246
SPELL_CSPELL_FILE_EXTENSIONS: ["*"]
47+
4348
TERRAFORM_TFLINT_UNSECURED_ENV_VARIABLES:
4449
- GITHUB_TOKEN
4550

0 commit comments

Comments
 (0)