From f80c5730bec095bbcf45c395c94f3c44452a6442 Mon Sep 17 00:00:00 2001 From: Kushal Pandya Date: Fri, 16 Feb 2018 15:13:34 +0530 Subject: [PATCH] Ignore `_links` property for no-underscore-dangle rule --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index ad5eaebccae..8f9cdfb14ac 100644 --- a/.eslintrc +++ b/.eslintrc @@ -36,7 +36,7 @@ "import/no-commonjs": "error", "no-multiple-empty-lines": ["error", { "max": 1 }], "promise/catch-or-return": "error", - "no-underscore-dangle": ["error", { "allow": ["__"]}], + "no-underscore-dangle": ["error", { "allow": ["__", "_links"]}], "vue/html-self-closing": ["error", { "html": { "void": "always",