diff .eslintrc @ 19:2a9e941c96ee

Bring new build tools from the sample plugin project
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 18 Mar 2022 19:19:18 -0700
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.eslintrc	Fri Mar 18 19:19:18 2022 -0700
@@ -0,0 +1,23 @@
+{
+    "root": true,
+        "parser": "@typescript-eslint/parser",
+        "env": { "node": true },
+        "plugins": [
+            "@typescript-eslint"
+        ],
+        "extends": [
+            "eslint:recommended",
+        "plugin:@typescript-eslint/eslint-recommended",
+        "plugin:@typescript-eslint/recommended"
+        ], 
+        "parserOptions": {
+            "sourceType": "module"
+        },
+        "rules": {
+            "no-unused-vars": "off",
+            "@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
+            "@typescript-eslint/ban-ts-comment": "off",
+            "no-prototype-builtins": "off",
+            "@typescript-eslint/no-empty-function": "off"
+        } 
+}