Skip to content

Commit bfec73c

Browse files
authored
Merge pull request #14 from Weminal-labs/develop
Release: v0.3.0
2 parents da2b7e2 + 2bd8f2f commit bfec73c

88 files changed

Lines changed: 9860 additions & 9212 deletions

Some content is hidden

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

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"ignorePatterns": [
2626
"out",
2727
"dist",
28-
"**/*.d.ts"
28+
"**/*.d.ts",
29+
"webview-ui/**"
2930
]
3031
}

.prettierignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# dependencies
2+
/node_modules
3+
/.pnp
4+
.pnp.js
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
/dist
12+
13+
# misc
14+
.DS_Store
15+
.env.local
16+
.env.development.local
17+
.env.test.local
18+
.env.production.local
19+
20+
npm-debug.log*
21+
yarn-debug.log*
22+
yarn-error.log*

.prettierrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"printWidth": 100,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": false,
7+
"quoteProps": "consistent",
8+
"jsxSingleQuote": false,
9+
"trailingComma": "es5",
10+
"bracketSpacing": true,
11+
"jsxBracketSameLine": true,
12+
"arrowParens": "always"
13+
}

.vscodeignore

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,32 @@
1+
# This file contains all the files/directories that should
2+
# be ignored (i.e. not included) in the final packaged extension.
3+
4+
# Ignore extension configs
15
.vscode/**
6+
7+
# Ignore test files
28
.vscode-test/**
3-
out/**
4-
node_modules/**
9+
out/test/**
10+
11+
# Ignore source code
512
src/**
6-
.gitignore
13+
14+
# Ignore all webview-ui files except the build directory
15+
webview-ui/src/**
16+
webview-ui/public/**
17+
webview-ui/scripts/**
18+
webview-ui/index.html
19+
webview-ui/README.md
20+
webview-ui/package.json
21+
webview-ui/package-lock.json
22+
webview-ui/node_modules/**
23+
24+
# Ignore Misc
725
.yarnrc
8-
webpack.config.js
926
vsc-extension-quickstart.md
27+
**/.gitignore
1028
**/tsconfig.json
29+
**/vite.config.ts
1130
**/.eslintrc.json
1231
**/*.map
13-
**/*.ts
14-
**/.vscode-test.*
32+
**/*.ts

0 commit comments

Comments
 (0)