🚧 It is under development. 🚧
- find nearest comments, starts with func
// func {identifier}
// comments about the function
- request to codegemma
- insert response under the comment
// func {identifier}
// comments about the function
function {identifier} () {
return;
};
- generate RAG of the project
Code conventions
...
Function
arrow function expression is recommended
// func {identifier}
// comments about the function
const {identifier} = () => {
return;
};