Skip to content

Commit

Permalink
adjust linting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmavis committed Mar 22, 2024
1 parent f3f1cf6 commit 0e69ebf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"prettier/prettier": [
"error",
{
"comma-dangle": "never",
"trailingComma": "es5",
"endOfLine": "auto"
}
],
Expand Down
4 changes: 2 additions & 2 deletions source/js/buyers-guide/search/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ export class Utils {
return propertyNameA < propertyNameB
? -1
: propertyNameA > propertyNameB
? 1
: 0;
? 1
: 0;
}
}
});
Expand Down

0 comments on commit 0e69ebf

Please sign in to comment.