Skip to content

Commit 09e3aed

Browse files
committed
lint errors updated
Signed-off-by: kunal-511 <yoyokvunal@gmail.com>
1 parent aa0ef78 commit 09e3aed

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ repos:
44
hooks:
55
- id: check-yaml
66
args: [--allow-multiple-documents]
7+
exclude: ^charts/.*/templates/.*\.yaml$
78
- id: check-json
89
- repo: https://github.com/pycqa/isort
910
rev: 5.11.5

scripts/compare_manifests.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
#!/usr/bin/env python3
22

33

4-
import yaml
5-
import sys
64
import json
7-
from typing import Dict, List, Tuple, Any
85
import re
6+
import sys
7+
from typing import Any, Dict, List, Tuple
8+
9+
import yaml
10+
911

1012
def load_manifests(file_path: str) -> List[Dict]:
1113
"""Load YAML manifests from file."""

0 commit comments

Comments
 (0)