Skip to content

Commit 3713a72

Browse files
committed
Lint fix
1 parent a6b1017 commit 3713a72

File tree

20 files changed

+21
-22
lines changed

20 files changed

+21
-22
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# and another the rest of the directory.
44

55
# All your base
6-
* @DataDog/container-platform
6+
* @DataDog/container-platform

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111

1212

1313
**Additional environment details (Operating System, Agent telemetry, etc):**
14-
<!-- Other relevant details such as agent version, agent status, relevant agent logs, etc. --->
14+
<!-- Other relevant details such as agent version, agent status, relevant agent logs, etc. --->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Validate your changes before merge, ensuring that:
2020
* Anything else we should know when reviewing?
2121
* Possible drawbacks and tradeoffs.
2222
* Include info about alternatives that were considered and why the proposed version was chosen.
23-
-->
23+
-->

.github/workflows/pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1313

1414
- name: Set up Python
15-
uses: actions/setup-python@v5a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
15+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
1616
with:
1717
python-version: "3.12"
1818

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ crash.log
1010
crash.*.log
1111

1212
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
13-
# password, private keys, and other secrets. These should not be part of version
14-
# control as they are data points which are potentially sensitive and subject
13+
# password, private keys, and other secrets. These should not be part of version
14+
# control as they are data points which are potentially sensitive and subject
1515
# to change depending on the environment.
1616
*.tfvars
1717
*.tfvars.json
@@ -44,4 +44,4 @@ build
4444
target
4545
bin
4646
obj
47-
.DS_Store
47+
.DS_Store

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"editor.tabSize": 2,
33
"editor.insertSpaces": true
4-
}
4+
}

examples/ecs_fargate/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
output "example_module" {
77
value = module.datadog_ecs_fargate_task.arn
8-
}
8+
}

examples/ecs_fargate/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ variable "dd_site" {
2525
description = "Datadog Site"
2626
type = string
2727
default = "datadoghq.com"
28-
}
28+
}

examples/ecs_fargate/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ terraform {
1212
version = ">= 5.77.0"
1313
}
1414
}
15-
}
15+
}

modules/ecs_fargate/datadog.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,4 +394,4 @@ locals {
394394
volumesFrom = []
395395
}
396396
] : []
397-
}
397+
}

0 commit comments

Comments
 (0)