Skip to content

Commit

Permalink
Add repository url
Browse files Browse the repository at this point in the history
  • Loading branch information
nedjulius committed Mar 19, 2024
1 parent 66338bd commit 1038d82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"description": "Prettier plugin to sort StyleX keys",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/nedjulius/prettier-plugin-stylex-key-sort",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function isBlankLineBetweenProperties(
function withStylexKeySort(parser: Parser): Parser {
return {
...parser,
parse: function (text: string, options: ParserOptions) {
parse: function(text: string, options: ParserOptions) {
const ast = parser.parse(text, options);

stylexKeySort(
Expand Down

0 comments on commit 1038d82

Please sign in to comment.