๐Ÿ“ฆ Aider-AI / aider

๐Ÿ“„ watch.js ยท 39 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39// Regular AI comment
//ai do 1 something
//AI make 2 this better
//ai! urgent 3 change needed
//AI! another 4 urgent one
// ai with 5 space
// AI with 6 caps
// ai! with 7 bang
// this is not an ai comment
// aider is not an ai! comment

function dummyFunction() {
    // ai inside 8 function
    return true;
}

class Example {
    constructor() {
        // ai in 9 constructor
        this.value = 42;
    }

    method() {
        // ai in 10 method
        return this.value;
    }
  // ai!
  //ai
  //ai!
  // 11-13

  method2() { // ai 14
    return 1;
  }
}
// trailing whitespace ai  
// trailing whitespace ai!  
// 15-16