Skip to content

Commit

Permalink
Automated: Simulate changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sheck committed Oct 8, 2024
1 parent 1c3e7a4 commit e41996e
Show file tree
Hide file tree
Showing 16 changed files with 64 additions and 4 deletions.
4 changes: 3 additions & 1 deletion test/v6/existing.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
function hello(this_should_be_ignored_because_its_an_existing_violation) {
console.log("hello world")
console.log("hello world")
const a = 0
a = 1
}
9 changes: 9 additions & 0 deletions test/v6/new.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function addOne(i) {
if (i != NaN) {
return i ++
} else {
return
}
};

const not_camel_case = true
4 changes: 4 additions & 0 deletions test/v6/ruby.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class EslintShouldIgnoreThis
def evenThoughItsWeird (*)
end
end
Empty file.
4 changes: 3 additions & 1 deletion test/v7/existing.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
function hello(this_should_be_ignored_because_its_an_existing_violation) {
console.log("hello world")
console.log("hello world")
const a = 0
a = 1
}
9 changes: 9 additions & 0 deletions test/v7/new.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function addOne(i) {
if (i != NaN) {
return i ++
} else {
return
}
};

const not_camel_case = true
4 changes: 4 additions & 0 deletions test/v7/ruby.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class EslintShouldIgnoreThis
def evenThoughItsWeird (*)
end
end
Empty file.
4 changes: 3 additions & 1 deletion test/v8/existing.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
function hello(this_should_be_ignored_because_its_an_existing_violation) {
console.log("hello world")
console.log("hello world")
const a = 0
a = 1
}
9 changes: 9 additions & 0 deletions test/v8/new.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function addOne(i) {
if (i != NaN) {
return i ++
} else {
return
}
};

const not_camel_case = true
4 changes: 4 additions & 0 deletions test/v8/ruby.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class EslintShouldIgnoreThis
def evenThoughItsWeird (*)
end
end
Empty file.
4 changes: 3 additions & 1 deletion test/v9/existing.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
function hello(this_should_be_ignored_because_its_an_existing_violation) {
console.log("hello world")
console.log("hello world")
const a = 0
a = 1
}
9 changes: 9 additions & 0 deletions test/v9/new.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function addOne(i) {
if (i != NaN) {
return i ++
} else {
return
}
};

const not_camel_case = true
4 changes: 4 additions & 0 deletions test/v9/ruby.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class EslintShouldIgnoreThis
def evenThoughItsWeird (*)
end
end
Empty file.

0 comments on commit e41996e

Please sign in to comment.