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 3, 2024
1 parent 851da09 commit ac97025
Show file tree
Hide file tree
Showing 31 changed files with 4,938 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
4 changes: 4 additions & 0 deletions ping-viewer-next-frontend/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
76 changes: 76 additions & 0 deletions ping-viewer-next-frontend/.eslintrc-auto-import.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"globals": {
"Component": true,
"ComponentPublicInstance": true,
"ComputedRef": true,
"EffectScope": true,
"ExtractDefaultPropTypes": true,
"ExtractPropTypes": true,
"ExtractPublicPropTypes": true,
"InjectionKey": true,
"PropType": true,
"Ref": true,
"VNode": true,
"WritableComputedRef": true,
"computed": true,
"createApp": true,
"customRef": true,
"defineAsyncComponent": true,
"defineComponent": true,
"effectScope": true,
"getCurrentInstance": true,
"getCurrentScope": true,
"h": true,
"inject": true,
"isProxy": true,
"isReactive": true,
"isReadonly": true,
"isRef": true,
"markRaw": true,
"nextTick": true,
"onActivated": true,
"onBeforeMount": true,
"onBeforeRouteLeave": true,
"onBeforeRouteUpdate": true,
"onBeforeUnmount": true,
"onBeforeUpdate": true,
"onDeactivated": true,
"onErrorCaptured": true,
"onMounted": true,
"onRenderTracked": true,
"onRenderTriggered": true,
"onScopeDispose": true,
"onServerPrefetch": true,
"onUnmounted": true,
"onUpdated": true,
"provide": true,
"reactive": true,
"readonly": true,
"ref": true,
"resolveComponent": true,
"shallowReactive": true,
"shallowReadonly": true,
"shallowRef": true,
"toRaw": true,
"toRef": true,
"toRefs": true,
"toValue": true,
"triggerRef": true,
"unref": true,
"useAttrs": true,
"useCssModule": true,
"useCssVars": true,
"useLink": true,
"useRoute": true,
"useRouter": true,
"useSlots": true,
"watch": true,
"watchEffect": true,
"watchPostEffect": true,
"watchSyncEffect": true,
"onWatcherCleanup": true,
"useId": true,
"useModel": true,
"useTemplateRef": true
}
}
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 ac97025

Please sign in to comment.