Skip to content

Commit

Permalink
Add new container class names
Browse files Browse the repository at this point in the history
  • Loading branch information
bijij committed Jun 25, 2024
1 parent 200827a commit 87629d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: CI

on: [push, pull_request]

env:
ESLINT_USE_FLAT_CONFIG: false

jobs:
build:

Expand All @@ -17,4 +20,4 @@ jobs:
npm install eslint-plugin-json
- name: Lint with ESLint
run: |
npx eslint --ext .js,.json .
npx eslint . --ext .js,.json
2 changes: 2 additions & 0 deletions js/content-script.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ function getContainer(node) {
['.irc_c[style*="visibility: visible;"][style*="transform: translate3d(0px, 0px, 0px);"]', VERSIONS.FEB18],
['.irc_c[data-ved]', VERSIONS.JUL19],
['.tvh9oe[style*="display: block;"]', VERSIONS.OCT19]
['.EIehLd[style*="display: block;"]', VERSIONS.OCT19]

Check failure on line 35 in js/content-script.js

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 12 spaces but found 8

Check failure on line 35 in js/content-script.js

View workflow job for this annotation

GitHub Actions / build

Unexpected newline between object and [ of property access
['.fHE6De[style*="display: block;"]', VERSIONS.OCT19]

Check failure on line 36 in js/content-script.js

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 12 spaces but found 8

Check failure on line 36 in js/content-script.js

View workflow job for this annotation

GitHub Actions / build

Unexpected newline between object and [ of property access
].forEach(element => {
var child = node.querySelector(element[0]);
if (child) {
Expand Down

0 comments on commit 87629d8

Please sign in to comment.