Phát triển phần mềm với GitHub Copilot
Thalia Barrera
AI Engineering Curriculum Manager, DataCamp




$$
Xác định:

$$
Xác định:

Bao gồm trong: .github/copilot-instructions.md
## Project context Python project for processing data pipelines with Airflow.## Coding style - Use type hints for all functions- Follow PEP8- Use snake_case naming- Write Google-style docstrings## Testing - Use pytest- Include one test per function## More instructions...
$$
✅ Hướng dẫn hiệu quả:
$$
❌ Hướng dẫn kém hiệu quả:
$$
$$
## Style guidelines
- Conform to the coding styles defined
in styleguide.md in repo my-org/my-repo
- Answer in the style of a friendly
colleague, using informal language
- Answer in fewer than 1,000 characters

$$
$$
## Style guidelines
- Conform to the coding styles defined
in styleguide.md in repo my-org/my-repo
- Answer in the style of a friendly
colleague, using informal language
- Answer in fewer than 1,000 characters

copilot-instructions.md
copilot-instructions.md



$$


$$

$$
Ví dụ quy tắc toàn công ty:
$$

$$
$$
| Phạm vi | Ưu tiên |
|---|---|
| Hướng dẫn cá nhân | Cao nhất |
| Hướng dẫn dự án | Trung bình |
| Hướng dẫn tổ chức | Thấp nhất |
$$
Ví dụ lời nhắc: "Viết hàm tính trung bình của một danh sách số."
def calculate_average(numbers: List[float]) -> float:
"""Calculate the average of a list of numbers.
Args:
numbers (List[float]): A list of numbers to average.
Returns:
float: The average value of the numbers.
Raises:
ValueError: If the list is empty.
"""
if not numbers:
raise ValueError("The list of numbers cannot be empty.")
return sum(numbers) / len(numbers)
$$
Ví dụ lời nhắc: "Viết hàm tính trung bình của một danh sách số."
def calculate_average(numbers: List[float]) -> float:
"""Calculate the average of a list of numbers.
Args:
numbers (List[float]): A list of numbers to average.
Returns:
float: The average value of the numbers.
Raises:
ValueError: If the list is empty.
"""
if not numbers:
raise ValueError("The numbers list cannot be empty.")
return sum(numbers) / len(numbers)
$$

Phát triển phần mềm với GitHub Copilot