diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 0000000..0866ce7 --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,28 @@ +language: "en" +early_access: false +reviews: + high_level_summary: true + poem: true + review_status: true + collapse_walkthrough: false + path_filters: + - "!**/.xml" + path_instructions: + - path: "**.go" + instructions: "Review the Go code for conformity with the Go programming style guide, highlighting any deviations." + - path: "tests/**.*" + instructions: | + "Assess the unit test code employing the Mocha testing framework. Confirm that: + - The tests adhere to Mocha's established best practices. + - Test descriptions are sufficiently detailed to clarify the purpose of each test." + auto_review: + enabled: true + ignore_title_keywords: + - "WIP" + - "DO NOT MERGE" + drafts: false + base_branches: + - "develop" + - "feat/*" +chat: + auto_reply: false diff --git a/Maps/main.go b/Maps/main.go index 370a840..e192353 100644 --- a/Maps/main.go +++ b/Maps/main.go @@ -25,4 +25,8 @@ func main() { for _, value := range languages { fmt.Printf("for key value is %v\n", value) } + + for _ value := range languages { + fmt.Printf("for key value is %v\n", value) + } }