diff --git a/.eslintrc.json b/.eslintrc.json index 815a1e9d961..a8448a57698 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -14,7 +14,7 @@ "prettier/prettier": [ "error", { - "comma-dangle": "never", + "trailingComma": "es5", "endOfLine": "auto" } ], diff --git a/source/js/buyers-guide/search/utils.js b/source/js/buyers-guide/search/utils.js index 1fb32af50e0..8540ca352f6 100644 --- a/source/js/buyers-guide/search/utils.js +++ b/source/js/buyers-guide/search/utils.js @@ -301,8 +301,8 @@ export class Utils { return propertyNameA < propertyNameB ? -1 : propertyNameA > propertyNameB - ? 1 - : 0; + ? 1 + : 0; } } });