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:
- npm ci
- npm run format
- npm run lint
# https://playwright.dev/docs/ci#gitlab-ci
# e2e tests:
# stage: test
......
{}
\ No newline at end of file
{}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue Playground</title>
</head>
<body>
......
......@@ -11,7 +11,8 @@
"build-only": "vite build",
"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",
"format": "prettier --check ."
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {
"@tanstack/vue-table": "^8.7.6",
......
......@@ -6,29 +6,45 @@
Josh's Custom CSS Reset
https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
*,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
}
html, body {
html,
body {
height: 100%;
}
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}
input, button, textarea, select {
input,
button,
textarea,
select {
font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
#root {
isolation: isolate;
}
\ No newline at end of file
}
{
"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": {
"composite": true,
"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