Skip to content

Commit

Permalink
Merge pull request #21 from mattgodbolt/mg/eslint
Browse files Browse the repository at this point in the history
First pass at very simple eslint
  • Loading branch information
mattgodbolt authored Dec 19, 2024
2 parents f76acba + 9387f34 commit 6cf3bc1
Show file tree
Hide file tree
Showing 12 changed files with 974 additions and 130 deletions.
14 changes: 14 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import eslintConfigPrettier from "eslint-config-prettier";

/** @type {import('eslint').Linter.Config[]} */
export default [
{
languageOptions: {
globals: { ...globals.browser, webkitAudioContext: "readonly" },
},
},
pluginJs.configs.recommended,
eslintConfigPrettier,
];
Loading

0 comments on commit 6cf3bc1

Please sign in to comment.