From 49fcd9e80eb2ea319c9ce5efbf74c345bc6ad9c1 Mon Sep 17 00:00:00 2001 From: Miles Frain Date: Wed, 9 Dec 2020 12:32:53 -0800 Subject: [PATCH] Remove eslint --- .eslintrc.json | 28 ---------------------------- .gitignore | 1 - package.json | 3 +-- 3 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 84cef4f..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "parserOptions": { - "ecmaVersion": 5 - }, - "extends": "eslint:recommended", - "env": { - "commonjs": true - }, - "rules": { - "strict": [2, "global"], - "block-scoped-var": 2, - "consistent-return": 2, - "eqeqeq": [2, "smart"], - "guard-for-in": 2, - "no-caller": 2, - "no-extend-native": 2, - "no-loop-func": 2, - "no-new": 2, - "no-param-reassign": 2, - "no-return-assign": 2, - "no-unused-expressions": 2, - "no-use-before-define": 2, - "radix": [2, "always"], - "indent": [2, 2], - "quotes": [2, "double"], - "semi": [2, "always"] - } -} diff --git a/.gitignore b/.gitignore index 48b4a42..7bd330e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ /.* !/.gitignore -!/.eslintrc.json !/.github/ /bower_components/ /node_modules/ diff --git a/package.json b/package.json index fd4391e..d3602c1 100644 --- a/package.json +++ b/package.json @@ -2,11 +2,10 @@ "private": true, "scripts": { "clean": "rimraf output && rimraf .pulp-cache", - "build": "eslint src && pulp build -- --censor-lib --strict", + "build": "pulp build -- --censor-lib --strict", "test": "pulp test" }, "devDependencies": { - "eslint": "^7.15.0", "pulp": "^15.0.0", "purescript-psa": "^0.8.0", "rimraf": "^3.0.2"