Skip to content

Commit

Permalink
Use spaces instead of tabs for markdown files
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldrapper committed Mar 29, 2024
1 parent 6145498 commit 2963e17
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"printWidth": 130,
"useTabs": true,
"printWidth": 130,
"useTabs": true,
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ The easiest way to try out Morphlex is to import it directly from UNPKG.

```html
<script type="module">
import { morph } from "https://www.unpkg.com/[email protected]/dist/morphlex.min.js";
import { morph } from "https://www.unpkg.com/[email protected]/dist/morphlex.min.js";
morph(currentNode, referenceNode);
morph(currentNode, referenceNode);
</script>
```

Expand Down

0 comments on commit 2963e17

Please sign in to comment.