Skip to content

Commit

Permalink
Merge pull request #14 from Weminal-labs/develop
Browse files Browse the repository at this point in the history
Release: v0.3.0
  • Loading branch information
tung-lee authored Apr 8, 2024
2 parents da2b7e2 + 2bd8f2f commit bfec73c
Show file tree
Hide file tree
Showing 88 changed files with 9,860 additions and 9,212 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
"**/*.d.ts",
"webview-ui/**"
]
}
22 changes: 22 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build
/dist

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
13 changes: 13 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "consistent",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "always"
}
30 changes: 24 additions & 6 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,32 @@
# This file contains all the files/directories that should
# be ignored (i.e. not included) in the final packaged extension.

# Ignore extension configs
.vscode/**

# Ignore test files
.vscode-test/**
out/**
node_modules/**
out/test/**

# Ignore source code
src/**
.gitignore

# Ignore all webview-ui files except the build directory
webview-ui/src/**
webview-ui/public/**
webview-ui/scripts/**
webview-ui/index.html
webview-ui/README.md
webview-ui/package.json
webview-ui/package-lock.json
webview-ui/node_modules/**

# Ignore Misc
.yarnrc
webpack.config.js
vsc-extension-quickstart.md
**/.gitignore
**/tsconfig.json
**/vite.config.ts
**/.eslintrc.json
**/*.map
**/*.ts
**/.vscode-test.*
**/*.ts
Loading

0 comments on commit bfec73c

Please sign in to comment.