Ignore `_links` property for no-underscore-dangle rule

This commit is contained in:
Kushal Pandya 2018-02-16 15:13:34 +05:30
parent 049d2cc435
commit f80c5730be
1 changed files with 1 additions and 1 deletions

View File

@ -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",