Skip to content

Commit

Permalink
Merge pull request #1144 from artichoke/dependabot/npm_and_yarn/npm-d…
Browse files Browse the repository at this point in the history
…eps-98ae1d77fc

Bump the npm-deps group across 1 directory with 8 updates
  • Loading branch information
lopopolo authored Jul 11, 2024
2 parents 65aee6f + a9283bd commit 38bdaa7
Show file tree
Hide file tree
Showing 7 changed files with 543 additions and 588 deletions.
5 changes: 0 additions & 5 deletions .eslintignore

This file was deleted.

2 changes: 0 additions & 2 deletions copy-assets.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable no-console */

import fs from "node:fs/promises";
import path from "node:path";

Expand Down
31 changes: 31 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// @ts-check

import eslint from "@eslint/js";
import globals from "globals";
import tseslint from "typescript-eslint";

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.strict,
...tseslint.configs.stylistic,
{
languageOptions: {
ecmaVersion: 2022,
sourceType: "module",
globals: {
...globals.browser,
...globals.node,
},
},
},
{
ignores: [
"dist/**/*",
"emsdk/**/*",
"target/**/*",
"**/src/wasm/**/*.js",
"**/src/wasm/**/*.wasm",
"**/vendor/**/*",
],
},
);
Loading

0 comments on commit 38bdaa7

Please sign in to comment.