Commit a7a504b0 authored by Luke "Jared" Bennett's avatar Luke "Jared" Bennett

Allow __ function for no-underscore-dangle eslint rule

parent d0bb0d6e
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
"filenames/match-regex": [2, "^[a-z0-9_]+$"], "filenames/match-regex": [2, "^[a-z0-9_]+$"],
"import/no-commonjs": "error", "import/no-commonjs": "error",
"no-multiple-empty-lines": ["error", { "max": 1 }], "no-multiple-empty-lines": ["error", { "max": 1 }],
"promise/catch-or-return": "error" "promise/catch-or-return": "error",
"no-underscore-dangle": ["error", { "allow": ["__"]}],
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment