-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
- Loading branch information
There are no files selected for viewing
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) { | ||
Check failure on line 1 in test/v6/existing.js GitHub Actions / balto-eslint-v6no-unused-vars
Check warning on line 1 in test/v6/existing.js GitHub Actions / balto-eslint-v6camelcase
|
||
console.log("hello world") | ||
console.log("hello world") | ||
const a = 0 | ||
a = 1 | ||
} |
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 | ||
Check warning on line 9 in test/v6/new.js GitHub Actions / balto-eslint-v6camelcase
|
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) { | ||
Check failure on line 1 in test/v7/existing.js GitHub Actions / balto-eslint-v7no-unused-vars
Check warning on line 1 in test/v7/existing.js GitHub Actions / balto-eslint-v7camelcase
|
||
console.log("hello world") | ||
console.log("hello world") | ||
const a = 0 | ||
a = 1 | ||
Check failure on line 4 in test/v7/existing.js GitHub Actions / balto-eslint-v7no-const-assign
|
||
} |
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 | ||
Check warning on line 9 in test/v7/new.js GitHub Actions / balto-eslint-v7camelcase
|
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) { | ||
Check failure on line 1 in test/v8/existing.js GitHub Actions / balto-eslint-v8no-unused-vars
Check warning on line 1 in test/v8/existing.js GitHub Actions / balto-eslint-v8camelcase
|
||
console.log("hello world") | ||
console.log("hello world") | ||
const a = 0 | ||
a = 1 | ||
Check failure on line 4 in test/v8/existing.js GitHub Actions / balto-eslint-v8no-const-assign
|
||
} |
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 | ||
Check warning on line 9 in test/v8/new.js GitHub Actions / balto-eslint-v8camelcase
|
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) { | ||
Check failure on line 1 in test/v9/existing.js GitHub Actions / balto-eslint-v9no-unused-vars
Check warning on line 1 in test/v9/existing.js GitHub Actions / balto-eslint-v9camelcase
|
||
console.log("hello world") | ||
console.log("hello world") | ||
const a = 0 | ||
a = 1 | ||
Check failure on line 4 in test/v9/existing.js GitHub Actions / balto-eslint-v9no-const-assign
|
||
} |
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 | ||
Check warning on line 9 in test/v9/new.js GitHub Actions / balto-eslint-v9camelcase
|