summaryrefslogtreecommitdiff
path: root/client/simple/eslint.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/simple/eslint.config.js')
-rw-r--r--client/simple/eslint.config.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/client/simple/eslint.config.js b/client/simple/eslint.config.js
deleted file mode 100644
index 9dde72a84..000000000
--- a/client/simple/eslint.config.js
+++ /dev/null
@@ -1,34 +0,0 @@
-import globals from "globals";
-import pluginJs from "@eslint/js";
-
-
-/** @type {import('eslint').Linter.Config[]} */
-export default [
- pluginJs.configs.recommended,
-
- // global "ignores"
- // https://eslint.org/docs/latest/use/configure/configuration-files#globally-ignoring-files-with-ignores
- {
- ignores: ["node_modules/", "dist/"]
- },
-
- {
- files: [
- "**/*.js",
- ],
- linterOptions: {
- reportUnusedDisableDirectives: "error",
- // noInlineConfig: true
- },
- languageOptions: {
- sourceType: "module",
- globals: {
- ...globals.browser,
- }
- },
- rules: {
- indent: ["error", 2],
- },
- },
-
-];