Skip to content
Snippets Groups Projects
Commit 64cd5e53 authored by Artur Carvalho's avatar Artur Carvalho
Browse files

Fix prettier (except tab error)

parent 8e39e574
No related branches found
No related tags found
1 merge request!1Add initial libraries
Pipeline #67828 failed
...@@ -27,7 +27,6 @@ lint and format: ...@@ -27,7 +27,6 @@ lint and format:
- npm ci - npm ci
- npm run format - npm run format
- npm run lint - npm run lint
# https://playwright.dev/docs/ci#gitlab-ci # https://playwright.dev/docs/ci#gitlab-ci
# e2e tests: # e2e tests:
# stage: test # stage: test
......
{} {}
\ No newline at end of file
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue Playground</title> <title>Vue Playground</title>
</head> </head>
<body> <body>
......
...@@ -11,7 +11,8 @@ ...@@ -11,7 +11,8 @@
"build-only": "vite build", "build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --check ." "format": "prettier --check .",
"format:fix": "prettier --write ."
}, },
"dependencies": { "dependencies": {
"@tanstack/vue-table": "^8.7.6", "@tanstack/vue-table": "^8.7.6",
......
...@@ -6,29 +6,45 @@ ...@@ -6,29 +6,45 @@
Josh's Custom CSS Reset Josh's Custom CSS Reset
https://www.joshwcomeau.com/css/custom-css-reset/ https://www.joshwcomeau.com/css/custom-css-reset/
*/ */
*, *::before, *::after { *,
*::before,
*::after {
box-sizing: border-box; box-sizing: border-box;
} }
* { * {
margin: 0; margin: 0;
} }
html, body { html,
body {
height: 100%; height: 100%;
} }
body { body {
line-height: 1.5; line-height: 1.5;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
} }
img, picture, video, canvas, svg { img,
picture,
video,
canvas,
svg {
display: block; display: block;
max-width: 100%; max-width: 100%;
} }
input, button, textarea, select { input,
button,
textarea,
select {
font: inherit; font: inherit;
} }
p, h1, h2, h3, h4, h5, h6 { p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word; overflow-wrap: break-word;
} }
#root { #root {
isolation: isolate; isolation: isolate;
} }
\ No newline at end of file
{ {
"extends": "@vue/tsconfig/tsconfig.node.json", "extends": "@vue/tsconfig/tsconfig.node.json",
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"], "include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"playwright.config.*"
],
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,
"types": ["node"] "types": ["node"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment