Skip to content

Commit c72f854

Browse files
committed
new
1 parent 8e1d5c9 commit c72f854

9 files changed

+3303
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
dist/
3+
main.js
4+
styles.css
5+
obsidian-agtable.7z

.prettierrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 2,
4+
"semi": false,
5+
"singleQuote": true,
6+
"trailingComma": "es5",
7+
"bracketSpacing": true,
8+
"arrowParens": "always"
9+
}

.vscode/settings.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
3+
"[javascript]": {
4+
"editor.defaultFormatter": "esbenp.prettier-vscode"
5+
},
6+
"editor.formatOnType": true,
7+
"editor.formatOnSave": true
8+
}

manifest.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"id": "obsidian-echarts",
3+
"name": "obsidian echarts",
4+
"version": "0.0.1",
5+
"minAppVersion": "0.9.12",
6+
"description": "obsidian echarts",
7+
"author": "windily-cloud && Cuman",
8+
"authorUrl": "",
9+
"isDesktopOnly": false
10+
}

0 commit comments

Comments
 (0)