Skip to content

Commit

Permalink
Merge pull request #71 from schalkneethling/70-feat-make-minimalist-c…
Browse files Browse the repository at this point in the history
…reatable

feat: make minimalist creatable
  • Loading branch information
schalkneethling authored Dec 19, 2024
2 parents 036dfa4 + 0e2512e commit d527504
Show file tree
Hide file tree
Showing 5 changed files with 1,027 additions and 6 deletions.
17 changes: 17 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import js from "@eslint/js";
import globals from "globals";

export default [
js.configs.recommended,
{
languageOptions: {
globals: {
...globals.browser,
...globals.nodeBuiltin,
},
},
rules: {
"no-console": ["error", { allow: ["clear", "info"] }],
},
},
];
Loading

0 comments on commit d527504

Please sign in to comment.