From 88922ef4c7c0682cd6fa41f2eb9e64a2688f509f Mon Sep 17 00:00:00 2001 From: nichlaes Date: Thu, 26 Sep 2024 11:23:21 +0200 Subject: [PATCH] no longer supported --- servers/lib/.eslintrc | 53 ------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 servers/lib/.eslintrc diff --git a/servers/lib/.eslintrc b/servers/lib/.eslintrc deleted file mode 100644 index e739c19b6..000000000 --- a/servers/lib/.eslintrc +++ /dev/null @@ -1,53 +0,0 @@ -{ - "env": { - "jest": true, - "jest/globals": true, - "node": true - }, - "extends": [ - "eslint:recommended", - "airbnb-base", - "plugin:@typescript-eslint/recommended", - "prettier" - ], - "globals": { - "Atomics": "readonly", - "SharedArrayBuffer": "readonly" - }, - "settings": { - "import/resolver": { - "node": { - "extensions": [".js"] - } - } - }, - "parser": "@typescript-eslint/parser", - "parserOptions": { - "requireConfigFile": false, - "ecmaVersion": 2022, - "sourceType": "module" // Allows for the use of imports - }, - "plugins": ["jest", "@typescript-eslint", "import"], - "rules": { - "import/no-extraneous-dependencies": ["error", { "devDependencies": true }], - "no-console": "error", - "import/first": "error", - "linebreak-style": 0, // disable linter linebreak rule, to allow for both unix and windows developement - "import/no-unresolved": "off", // Whatever IDE will pass an error if if the module is not found, so no reason for this.. - "import/extensions": "off", // That includes the production build.. We use linter for code checking / clean code optimization.. - "no-use-before-define": "off" - }, - "root": true, - - "overrides": [ - { - "files": ["*.ts"], - "parser": "@typescript-eslint/parser", - "parserOptions": { - "requireConfigFile": false, - "project": ["./tsconfig.json"] - }, - "plugins": ["@typescript-eslint"] - } - ] -}