Skip to content

Commit

Permalink
chore: get rid of the browserlist config
Browse files Browse the repository at this point in the history
  • Loading branch information
lozinsky committed Nov 26, 2023
1 parent 0149925 commit fb313bc
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 143 deletions.
1 change: 0 additions & 1 deletion .browserslistrc

This file was deleted.

1 change: 0 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"files": ["*.js"],
"extends": [
"eslint:recommended",
"plugin:compat/recommended",
"plugin:import/recommended",
"plugin:jsdoc/recommended-typescript-flavor-error",
"plugin:prettier/recommended"
Expand Down
6 changes: 3 additions & 3 deletions elements/effects-player-element-rainbow-highlight-effect.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function getHighlightByName() {

for (let index = 0; index < HIGHLIGHTS_QUANTITY; index++) {
let name = `effects-player-rainbow-${index + 1}`;
let highlight = new Highlight(); // eslint-disable-line no-undef, compat/compat
let highlight = new Highlight(); // eslint-disable-line no-undef

highlightByName.set(name, highlight);
}
Expand Down Expand Up @@ -116,7 +116,7 @@ export async function run(root, signal) {
let nextHighlightByPrevHighlight = getNextHighlightByPrevHighlight(highlights);

for (let [name, highlight] of highlightByName.entries()) {
CSS.highlights.set(name, highlight); // eslint-disable-line compat/compat
CSS.highlights.set(name, highlight);
}

await Promise.all(
Expand All @@ -143,6 +143,6 @@ export async function run(root, signal) {
);

for (let name of highlightByName.keys()) {
CSS.highlights.delete(name); // eslint-disable-line compat/compat
CSS.highlights.delete(name);
}
}
137 changes: 0 additions & 137 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"@web/test-runner-playwright": "^0.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-prefer-let": "^3.0.1",
Expand Down

0 comments on commit fb313bc

Please sign in to comment.