├── .prettierrc
└── index.html
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "singleQuote": true,
3 | "semi": false,
4 | "trailingComma": "none",
5 | "overrides": [
6 | {
7 | "files": "*.html",
8 | "options": {
9 | "parser": "html"
10 | }
11 | }
12 | ]
13 | }
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
7 |
8 |
12 |
13 |
21 |
22 |
291 |
--------------------------------------------------------------------------------