]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - .eslintrc.js
Add SASSLint makefile target, and run it in CI
[github/shaarli/Shaarli.git] / .eslintrc.js
diff --git a/.eslintrc.js b/.eslintrc.js
deleted file mode 100644 (file)
index 151b785..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-module.exports = {
-  "extends": "airbnb-base",
-  "env": {
-    "browser": true,
-  },
-  "rules": {
-    "no-param-reassign": 0, // manipulate DOM style properties
-    "no-restricted-globals": 0, // currently Shaarli uses alert/confirm, could be be improved later
-    "no-alert": 0, // currently Shaarli uses alert/confirm, could be be improved later
-    "no-cond-assign": [2, "except-parens"], // assignment in while loops is readable and avoid assignment duplication
-  }
-};