Skip to content
/ ifv Public
forked from banocean/ifv

Conversation

@yoper12
Copy link
Owner

@yoper12 yoper12 commented May 22, 2025

No description provided.

@yoper12
Copy link
Owner Author

yoper12 commented May 22, 2025

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ESLint doesn't pass. Please fix all ESLint issues.

test.js Outdated
@@ -0,0 +1,3 @@
var a = 90 < 100 != 40;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected var, use let or const instead. no-var

Fix available:

Suggested change
var a = 90 < 100 != 40;
let a = 90 < 100 != 40;

test.js Outdated
@@ -0,0 +1,3 @@
var a = 90 < 100 != 40;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected mix of '<' and '!='. Use parentheses to clarify the intended order of operations. stylistic/no-mixed-operators

test.js Outdated
@@ -0,0 +1,3 @@
var a = 90 < 100 != 40;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Expected '!==' and instead saw '!='. eqeqeq

Suggestion(s) available:

Suggested change
var a = 90 < 100 != 40;
var a = 90 < 100 !== 40;

test.js Outdated
@@ -0,0 +1,3 @@
var a = 90 < 100 != 40;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected mix of '<' and '!='. Use parentheses to clarify the intended order of operations. stylistic/no-mixed-operators

test.js Outdated
@@ -0,0 +1,3 @@
var a = 90 < 100 != 40;

console.log(a); No newline at end of file

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected console statement. no-console

Suggestion(s) available:

Suggested change
console.log(a);

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ESLint doesn't pass. Please fix all ESLint issues.

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ESLint doesn't pass. Please fix all ESLint issues.

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ESLint doesn't pass. Please fix all ESLint issues.

@yoper12 yoper12 merged commit 243ad57 into main May 23, 2025
0 of 2 checks passed
@yoper12 yoper12 deleted the linter branch May 23, 2025 07:33
@yoper12 yoper12 restored the linter branch May 28, 2025 20:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants