Commit 61bcf98b authored by Robert Knight's avatar Robert Knight

Disable comma-dangle rule.

Whether to add commas after the final argument in array and object
literals or function argument lists is handled by Prettier.
parent 17e1b8c7
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
}, },
"rules": { "rules": {
// Suppressed to make ESLint v6 migration easier. // Suppressed to make ESLint v6 migration easier.
"no-prototype-builtins": "off" "no-prototype-builtins": "off",
// Handled by Prettier.
"comma-dangle": "off"
} }
} }
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