Skip to content

Commit fd449a1

Browse files
committed
lint fixes
1 parent 0c53a2b commit fd449a1

Some content is hidden

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

55 files changed

+132
-85
lines changed

.devcontainer/devcontainer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@
2525
// "source.organizeImports": true
2626
// }
2727
//},
28-
"python.sortImports.args": [
28+
"isort.args": [
2929
"--profile=black"
3030
],
31-
"python.sortImports.path": "/opt/netbox/venv/bin/isort",
31+
"isort.path": "/opt/netbox/venv/bin/isort",
3232
"python.analysis.typeCheckingMode": "strict",
33+
python.Jedi
3334
"python.analysis.extraPaths": [
3435
"/opt/netbox/netbox"
3536
],

.devcontainer/docker-compose.override.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
version: '3.4'
23
services:
34
netbox:

.devcontainer/docker-compose.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
version: '3.4'
23
services:
34
netbox: &netbox
@@ -35,15 +36,15 @@ services:
3536
image: postgres:14-alpine
3637
env_file: env/postgres.env
3738
volumes:
38-
- netbox-postgres-data:/var/lib/postgresql/data
39+
- netbox-postgres-data:/var/lib/postgresql/data
3940

4041
# redis
4142
redis:
4243
image: redis:6-alpine
4344
command:
44-
- sh
45-
- -c # this is to evaluate the $REDIS_PASSWORD from the env
46-
- redis-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
45+
- sh
46+
- -c # this is to evaluate the $REDIS_PASSWORD from the env
47+
- redis-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
4748
env_file: env/redis.env
4849
#volumes:
4950
# - netbox-redis-data:/data

.devcontainer/initializers/aggregates.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
- prefix: 10.0.0.0/16
23
rir: RFC1918
34
tenant: tenant1

.devcontainer/initializers/asns.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
- asn: 1
23
rir: RFC1918
34
tenant: tenant1

.devcontainer/initializers/cables.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Required parameters for termination X ('a' or 'b'):
23
#
34
# ```

.devcontainer/initializers/circuit_types.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
- name: VPLS
23
slug: vpls
34
- name: MPLS

.devcontainer/initializers/circuits.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
- cid: Circuit_ID-1
23
provider: Provider1
34
type: Internet

.devcontainer/initializers/cluster_groups.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
- name: Group 1
23
slug: group-1
34
- name: Group 2
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
---
12
- name: Hyper-V
23
slug: hyper-v

0 commit comments

Comments
 (0)