From 4aa342f16e05f9dc60c598ccc0792628a2ea8079 Mon Sep 17 00:00:00 2001 From: Nick Sheck Date: Tue, 8 Oct 2024 12:32:34 -0700 Subject: [PATCH] Automated: Simulate changes --- test/v6/existing.js | 4 +++- test/v6/new.js | 9 +++++++++ test/v6/ruby.rb | 4 ++++ test/v6/some_file_that_eslint_should_ignore | 0 test/v7/existing.js | 4 +++- test/v7/new.js | 9 +++++++++ test/v7/ruby.rb | 4 ++++ test/v7/some_file_that_eslint_should_ignore | 0 test/v8/existing.js | 4 +++- test/v8/new.js | 9 +++++++++ test/v8/ruby.rb | 4 ++++ test/v8/some_file_that_eslint_should_ignore | 0 test/v9/existing.js | 4 +++- test/v9/new.js | 9 +++++++++ test/v9/ruby.rb | 4 ++++ test/v9/some_file_that_eslint_should_ignore | 0 16 files changed, 64 insertions(+), 4 deletions(-) create mode 100644 test/v6/new.js create mode 100644 test/v6/ruby.rb create mode 100644 test/v6/some_file_that_eslint_should_ignore create mode 100644 test/v7/new.js create mode 100644 test/v7/ruby.rb create mode 100644 test/v7/some_file_that_eslint_should_ignore create mode 100644 test/v8/new.js create mode 100644 test/v8/ruby.rb create mode 100644 test/v8/some_file_that_eslint_should_ignore create mode 100644 test/v9/new.js create mode 100644 test/v9/ruby.rb create mode 100644 test/v9/some_file_that_eslint_should_ignore diff --git a/test/v6/existing.js b/test/v6/existing.js index 0edb818..a2bf2fe 100644 --- a/test/v6/existing.js +++ b/test/v6/existing.js @@ -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 } diff --git a/test/v6/new.js b/test/v6/new.js new file mode 100644 index 0000000..498f055 --- /dev/null +++ b/test/v6/new.js @@ -0,0 +1,9 @@ +function addOne(i) { + if (i != NaN) { + return i ++ + } else { + return + } +}; + +const not_camel_case = true diff --git a/test/v6/ruby.rb b/test/v6/ruby.rb new file mode 100644 index 0000000..3dffd99 --- /dev/null +++ b/test/v6/ruby.rb @@ -0,0 +1,4 @@ +class EslintShouldIgnoreThis + def evenThoughItsWeird (*) +end +end diff --git a/test/v6/some_file_that_eslint_should_ignore b/test/v6/some_file_that_eslint_should_ignore new file mode 100644 index 0000000..e69de29 diff --git a/test/v7/existing.js b/test/v7/existing.js index 0edb818..a2bf2fe 100644 --- a/test/v7/existing.js +++ b/test/v7/existing.js @@ -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 } diff --git a/test/v7/new.js b/test/v7/new.js new file mode 100644 index 0000000..498f055 --- /dev/null +++ b/test/v7/new.js @@ -0,0 +1,9 @@ +function addOne(i) { + if (i != NaN) { + return i ++ + } else { + return + } +}; + +const not_camel_case = true diff --git a/test/v7/ruby.rb b/test/v7/ruby.rb new file mode 100644 index 0000000..3dffd99 --- /dev/null +++ b/test/v7/ruby.rb @@ -0,0 +1,4 @@ +class EslintShouldIgnoreThis + def evenThoughItsWeird (*) +end +end diff --git a/test/v7/some_file_that_eslint_should_ignore b/test/v7/some_file_that_eslint_should_ignore new file mode 100644 index 0000000..e69de29 diff --git a/test/v8/existing.js b/test/v8/existing.js index 0edb818..a2bf2fe 100644 --- a/test/v8/existing.js +++ b/test/v8/existing.js @@ -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 } diff --git a/test/v8/new.js b/test/v8/new.js new file mode 100644 index 0000000..498f055 --- /dev/null +++ b/test/v8/new.js @@ -0,0 +1,9 @@ +function addOne(i) { + if (i != NaN) { + return i ++ + } else { + return + } +}; + +const not_camel_case = true diff --git a/test/v8/ruby.rb b/test/v8/ruby.rb new file mode 100644 index 0000000..3dffd99 --- /dev/null +++ b/test/v8/ruby.rb @@ -0,0 +1,4 @@ +class EslintShouldIgnoreThis + def evenThoughItsWeird (*) +end +end diff --git a/test/v8/some_file_that_eslint_should_ignore b/test/v8/some_file_that_eslint_should_ignore new file mode 100644 index 0000000..e69de29 diff --git a/test/v9/existing.js b/test/v9/existing.js index 0edb818..a2bf2fe 100644 --- a/test/v9/existing.js +++ b/test/v9/existing.js @@ -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 } diff --git a/test/v9/new.js b/test/v9/new.js new file mode 100644 index 0000000..498f055 --- /dev/null +++ b/test/v9/new.js @@ -0,0 +1,9 @@ +function addOne(i) { + if (i != NaN) { + return i ++ + } else { + return + } +}; + +const not_camel_case = true diff --git a/test/v9/ruby.rb b/test/v9/ruby.rb new file mode 100644 index 0000000..3dffd99 --- /dev/null +++ b/test/v9/ruby.rb @@ -0,0 +1,4 @@ +class EslintShouldIgnoreThis + def evenThoughItsWeird (*) +end +end diff --git a/test/v9/some_file_that_eslint_should_ignore b/test/v9/some_file_that_eslint_should_ignore new file mode 100644 index 0000000..e69de29