Skip to content

Commit

Permalink
trigger quick fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
brichbash committed Aug 23, 2024
1 parent eaee366 commit 14712b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/src/dom/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ export default {
const instanceMap = elementMap.get(element)

instanceMap.delete(key)

if (1 == 1) {

Check failure on line 49 in js/src/dom/data.js

View workflow job for this annotation

GitHub Actions / Qodana for JS

ESLint

ESLint: Unexpected constant condition. (no-constant-condition)

Check failure on line 49 in js/src/dom/data.js

View workflow job for this annotation

GitHub Actions / Qodana for JS

ESLint

ESLint: Expected '===' and instead saw '=='. (eqeqeq)

Check failure on line 49 in js/src/dom/data.js

View workflow job for this annotation

GitHub Actions / Qodana for JS

ESLint

ESLint: Comparing to itself is potentially pointless. (no-self-compare)
console.log("something")

Check failure on line 50 in js/src/dom/data.js

View workflow job for this annotation

GitHub Actions / Qodana for JS

ESLint

ESLint: Strings must use singlequote. (quotes)

Check failure on line 50 in js/src/dom/data.js

View workflow job for this annotation

GitHub Actions / Qodana for JS

ESLint

ESLint: Unexpected console statement. (no-console)
}
// free up element references if there are no instances left for an element
if (instanceMap.size === 0) {

Check failure on line 53 in js/src/dom/data.js

View workflow job for this annotation

GitHub Actions / Qodana for JS

ESLint

ESLint: Expected blank line before this statement. (padding-line-between-statements)
elementMap.delete(element)
Expand Down

0 comments on commit 14712b1

Please sign in to comment.