Skip to content

Commit

Permalink
Relax rule: Do not enforce camelcase style for global variables (came…
Browse files Browse the repository at this point in the history
…lcase)

Fixes: standard/standard#1474
  • Loading branch information
feross committed Oct 29, 2020
1 parent fbc0891 commit 2e39843
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@
"block-spacing": ["error", "always"],
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
"camelcase": ["error", {
"allow": ["^UNSAFE_"],
"properties": "never",
"allow": ["^UNSAFE_"]
"ignoreGlobals": true
}],
"comma-dangle": ["error", {
"arrays": "never",
Expand Down

0 comments on commit 2e39843

Please sign in to comment.