« get me outta code hell

remove prettier, don't lint indentation - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2022-06-26 18:40:04 -0300
committer(quasar) nebula <qznebula@protonmail.com>2022-06-26 18:40:04 -0300
commit89b976ebc81656ef76f875d522fee75385f69c6d (patch)
tree0856405d323f2abb44ea05dc2e9d682bba7179d6
parent99c0bb64b33858a3a4077343b6db987471cdc1f0 (diff)
remove prettier, don't lint indentation
-rw-r--r--.eslintrc.json4
-rw-r--r--package-lock.json22
-rw-r--r--package.json3
3 files changed, 4 insertions, 25 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 98ce4f2..635116d 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -9,5 +9,7 @@
     "ecmaVersion": "latest",
     "sourceType": "module"
   },
-  "rules": {}
+  "rules": {
+    "indent": ["off"]
+  }
 }
diff --git a/package-lock.json b/package-lock.json
index 2eb1495..24d6a54 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -18,7 +18,6 @@
             },
             "devDependencies": {
                 "eslint": "^8.18.0",
-                "prettier": "2.7.1",
                 "tape": "^5.4.1"
             }
         },
@@ -1359,21 +1358,6 @@
                 "node": ">= 0.8.0"
             }
         },
-        "node_modules/prettier": {
-            "version": "2.7.1",
-            "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz",
-            "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==",
-            "dev": true,
-            "bin": {
-                "prettier": "bin-prettier.js"
-            },
-            "engines": {
-                "node": ">=10.13.0"
-            },
-            "funding": {
-                "url": "https://github.com/prettier/prettier?sponsor=1"
-            }
-        },
         "node_modules/punycode": {
             "version": "2.1.1",
             "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
@@ -2744,12 +2728,6 @@
             "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
             "dev": true
         },
-        "prettier": {
-            "version": "2.7.1",
-            "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz",
-            "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==",
-            "dev": true
-        },
         "punycode": {
             "version": "2.1.1",
             "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
diff --git a/package.json b/package.json
index 1ca350e..91f207b 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
     },
     "scripts": {
         "test": "tape test/**/*.js",
-        "dev": "prettier --loglevel warn --write . && eslint src && node src/upd8.js"
+        "dev": "eslint src && node src/upd8.js"
     },
     "dependencies": {
         "fix-whitespace": "^1.0.4",
@@ -19,7 +19,6 @@
     "license": "GPL-3.0",
     "devDependencies": {
         "eslint": "^8.18.0",
-        "prettier": "2.7.1",
         "tape": "^5.4.1"
     }
 }