summaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorJannis R <mail@jannisr.de>2021-03-03 13:58:44 +0100
committerJannis R <mail@jannisr.de>2021-03-03 13:58:46 +0100
commit2bc162b388aa7b139a8807d4479030e4b168f2f7 (patch)
treea072276682db94bfb8fc30559123c0dc54282868 /.eslintrc.json
parentec8e8c67083404440d40067e5a40351521295397 (diff)
add linter, minor tweaks, 1.2.0
- add debug logging to connect() - readme: document verifyAlpnId() 📝
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 0000000..1d44c69
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,17 @@
+{
+ "extends": "eslint:recommended",
+ "env": {
+ "commonjs": true,
+ "es6": true,
+ "node": true
+ },
+ "parserOptions": {
+ "ecmaVersion": 2018
+ },
+ "ignorePatterns": [
+ "node_modules"
+ ],
+ "rules": {
+ "no-unused-vars": "off"
+ }
+}