Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
def format_linter_error(error: dict) -> dict:
# write your code here
pass
return {
"line": error["line_number"],
"column": error["column_number"],
"message": error["text"],
"name": error["code"],
"source": "flake8"
}


def format_single_linter_file(file_path: str, errors: list) -> dict:
# write your code here
pass
return {
"errors": [format_linter_error(e) for e in errors],
"path": file_path,
"status": "failed" if errors else "passed"
}


def format_linter_report(linter_report: dict) -> list:
# write your code here
pass
return [
format_single_linter_file(path, errors)
for path, errors in linter_report.items()
]