Merge branch '43247-eslint-exception-for-links' into 'master'

Add ESLint exception for `_links` property

Closes #43247

See merge request gitlab-org/gitlab-ce!17170
This commit is contained in:
Phil Hughes 2018-02-16 10:21:45 +00:00
commit c94f25e166

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