Skip to content

Commit

Permalink
Test commit for #1582 (95ba104) by run 10779594161 (1947-1)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 9, 2024
1 parent 84b2425 commit 78cfbcf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/__tests__/no-implicit-coercion-number-incorrect.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/* eslint-disable */
/* eslint-enable no-implicit-coercion */
/*eslint no-implicit-coercion: "error"*/
var n = +foo;
var n = -(-foo);
var n = foo - 0;
var n = 1 * foo;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/* eslint-disable */
/* eslint-enable sort-imports */
/*eslint sort-imports: ["error", { "ignoreDeclarationSort": true }]*/
// Incorrect Code
import {b, a, c} from 'foo.js'

0 comments on commit 78cfbcf

Please sign in to comment.