Skip to content

Commit 853849b

Browse files
DeepNotesAppgustavotoyota
authored andcommitted
Initial commit
0 parents  commit 853849b

944 files changed

Lines changed: 67406 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.git/
2+
3+
**/.env
4+
5+
**/dist/
6+
7+
**/node_modules/
8+
9+
**/Dockerfile
10+
.dockerignore
11+
12+
**/*.log
13+
14+
**/*.tsbuildinfo

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist
2+
node_modules

.eslintrc.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = {
2+
root: true,
3+
4+
extends: ['base'],
5+
6+
parserOptions: {
7+
tsconfigRootDir: __dirname,
8+
project: './tsconfig.json',
9+
},
10+
11+
ignorePatterns: [
12+
'dist',
13+
'node_modules',
14+
'.eslintrc.js',
15+
'commitlint.config.js',
16+
'list-duplicates.js',
17+
],
18+
};

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
node_modules
2+
3+
.env
4+
5+
dist
6+
7+
.quasar
8+
9+
*.log
10+
11+
*.tsbuildinfo
12+
13+
*.keystore
14+
15+
.DS_Store

.husky/commit-msg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npx --no -- commitlint --edit ${1}

.npmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
auto-install-peers=true
2+
3+
public-hoist-pattern[]=@vue/runtime-core # needed for unplugin-vue-components to work properly

.prettierrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"singleQuote": true,
3+
"semi": true,
4+
"trailingComma": "all",
5+
"singleAttributePerLine": true
6+
}

.syncpackrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"source": ["package.json", "apps/**/package.json", "packages/**/package.json"]
3+
}

.vscode/launch.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "firefox",
9+
"request": "launch",
10+
"name": "Launch Firefox against localhost",
11+
"url": "http://192.168.1.4:60379",
12+
"webRoot": "${workspaceFolder}"
13+
},
14+
{
15+
"type": "chrome",
16+
"request": "launch",
17+
"name": "Launch Chrome against localhost",
18+
"url": "http://192.168.1.4:60379",
19+
"webRoot": "${workspaceFolder}"
20+
},
21+
{
22+
"type": "node",
23+
"request": "attach",
24+
"name": "Node: Nodemon",
25+
"processId": "${command:PickProcess}",
26+
"restart": true
27+
}
28+
]
29+
}

.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"editor.bracketPairColorization.enabled": true,
3+
"editor.guides.bracketPairs": true,
4+
"editor.formatOnSave": true,
5+
"editor.defaultFormatter": "esbenp.prettier-vscode",
6+
"editor.codeActionsOnSave": ["source.fixAll.eslint"],
7+
"eslint.validate": ["javascript", "typescript"],
8+
"typescript.tsdk": "node_modules/typescript/lib"
9+
}

0 commit comments

Comments
 (0)