Skip to content

Commit 9387f34

Browse files
committed
First pass at very simple eslint
1 parent f76acba commit 9387f34

File tree

12 files changed

+974
-130
lines changed

12 files changed

+974
-130
lines changed

eslint.config.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
import eslintConfigPrettier from "eslint-config-prettier";
4+
5+
/** @type {import('eslint').Linter.Config[]} */
6+
export default [
7+
{
8+
languageOptions: {
9+
globals: { ...globals.browser, webkitAudioContext: "readonly" },
10+
},
11+
},
12+
pluginJs.configs.recommended,
13+
eslintConfigPrettier,
14+
];

0 commit comments

Comments
 (0)