summaryrefslogtreecommitdiff
path: root/frontend/.eslintrc.json
diff options
context:
space:
mode:
authorJoe Carstairs <jcarstairs@scottlogic.com>2023-08-02 19:06:38 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-03 08:05:11 +0100
commitd7009367147fb8b841b9717c5807d04240292cdd (patch)
treee9bb3fc634b4adab97a57d6d1dc0f20c1c830f57 /frontend/.eslintrc.json
parent75629128bba7f5a83b0e8714685f8e481c7cae2f (diff)
Move code quality tools to root directory
Diffstat (limited to 'frontend/.eslintrc.json')
-rw-r--r--frontend/.eslintrc.json28
1 files changed, 0 insertions, 28 deletions
diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json
deleted file mode 100644
index 6e3410d..0000000
--- a/frontend/.eslintrc.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "env": {
- "browser": true,
- "es2021": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:astro/recommended",
- "plugin:@typescript-eslint/recommended"
- ],
- "overrides": [
- {
- "files": ["*.astro"],
- "parser": "astro-eslint-parser",
- "parserOptions": {
- "parser": "@typescript-eslint/parser",
- "extraFileExtensions": [".astro"]
- }
- }
- ],
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "ecmaVersion": "latest",
- "sourceType": "module"
- },
- "plugins": ["@typescript-eslint"],
- "rules": {}
-}