Autonomous Decision Making
Medium
- Category
- Excessive Agency
- Content
// ✗ Bad — only checking in some branches result, err := doSomething() fmt.Println(result) // using result without checking err // ✓ Good — always check before using other return values data, err := os.ReadFile("config.yaml")- Confidence
- 75% confidence
- Finding
- without checking
