summaryrefslogtreecommitdiff
path: root/eslint.config.js
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-06 16:51:26 -0700
committerFuwn <[email protected]>2025-09-06 16:51:26 -0700
commitb625aff7160c593646efaf080163f96f69aa6391 (patch)
tree163d5096e3145bcb0b0bf8feba5ab35ef12c9f62 /eslint.config.js
downloadumabotdiscord-b625aff7160c593646efaf080163f96f69aa6391.tar.xz
umabotdiscord-b625aff7160c593646efaf080163f96f69aa6391.zip
feat: Initial commit
Diffstat (limited to 'eslint.config.js')
-rw-r--r--eslint.config.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/eslint.config.js b/eslint.config.js
new file mode 100644
index 0000000..e8dde1c
--- /dev/null
+++ b/eslint.config.js
@@ -0,0 +1,15 @@
+import prettier from 'eslint-plugin-prettier/recommended';
+import js from '@eslint/js';
+import globals from 'globals';
+
+export default [
+ {
+ languageOptions: {
+ globals: {
+ ...globals.browser,
+ },
+ },
+ },
+ js.configs.recommended,
+ prettier,
+];