Skip to content

Commit

Permalink
ping-viewer-next-frontend: Add frontend project
Browse files Browse the repository at this point in the history
  • Loading branch information
RaulTrombin committed Oct 7, 2024
1 parent 9f0dff6 commit 2c5c44e
Show file tree
Hide file tree
Showing 29 changed files with 4,858 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ping-viewer-next-frontend/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
> 1%
last 2 versions
not dead
not ie 11
16 changes: 16 additions & 0 deletions ping-viewer-next-frontend/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/**
* .eslint.js
*
* ESLint configuration file.
*/

module.exports = {
root: true,
env: {
node: true,
},
extends: ["vuetify", "./.eslintrc-auto-import.json"],
rules: {
"vue/multi-word-component-names": "off",
},
};
5 changes: 5 additions & 0 deletions ping-viewer-next-frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
/dist

# Editor directories and files
.vscode
30 changes: 30 additions & 0 deletions ping-viewer-next-frontend/biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": []
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}
Binary file added ping-viewer-next-frontend/bun.lockb
Binary file not shown.
14 changes: 14 additions & 0 deletions ping-viewer-next-frontend/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!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" />
<title>Ping Viewer Next</title>
</head>

<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
14 changes: 14 additions & 0 deletions ping-viewer-next-frontend/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"allowJs": true,
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "bundler",
"paths": {
"@/*": ["src/*"],
"@components/*": ["src/components/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
}
}
Loading

0 comments on commit 2c5c44e

Please sign in to comment.