Skip to content

Commit

Permalink
feat: Initial Commit
Browse files Browse the repository at this point in the history
A fresh start. Dynbedded is born and needs some polish.
  • Loading branch information
MMoMM-org committed Oct 19, 2022
1 parent 23bcc02 commit f67c68c
Show file tree
Hide file tree
Showing 38 changed files with 21,888 additions and 169 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
npm node_modules
build
23 changes: 23 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"env": { "node": true },
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
"@typescript-eslint/ban-ts-comment": "off",
"no-prototype-builtins": "off",
"@typescript-eslint/no-empty-function": "off"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches:
- master
env:
PLUGIN_NAME: obsidian-plugin-base # Change this to match the id of your plugin.
PLUGIN_NAME: obsidian-dynbedded # Change this to match the id of your plugin.
jobs:
release:
name: Release
Expand Down
15 changes: 10 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
### Obsidian Vault

test-vault/.obsidian/plugins/obsidian-plugin-base
Dynbedded/.obsidian/plugins/obsidian-dynbedded

## You might want to include the following files by putting a # infront of them or deleting them from here
test-vault/.obsidian/app.json
test-vault/.obsidian/appearance.json
test-vault/.obsidian/hotkeys.json
test-vault/.obsidian/workspace.json
Dynbedded/.obsidian/app.json
Dynbedded/.obsidian/appearance.json
Dynbedded/.obsidian/hotkeys.json
Dynbedded/.obsidian/workspace.json

## Other ignores
*.map


### VisualStudioCode template
Expand Down Expand Up @@ -37,6 +40,7 @@ test-vault/.obsidian/workspace.json
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
.idea/inspectionProfiles/**

# Generated files
.idea/**/contentModel.xml
Expand Down Expand Up @@ -218,3 +222,4 @@ dist
.yarn/install-state.gz
.pnp.*

/.idea/sonarlint/issuestore/index.pb
6 changes: 6 additions & 0 deletions Dynbedded/.obsidian/community-plugins.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
"hot-reload",
"obsidian-plugin-base",
"dataview",
"obsidian-dynbedded"
]
File renamed without changes.

0 comments on commit f67c68c

Please sign in to comment.