Skip to content

Commit 6be6877

Browse files
committed
Merge branch 'master' into release
2 parents 2e79fd6 + 3e0aebd commit 6be6877

Some content is hidden

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

49 files changed

+1355
-4290
lines changed

.eslintrc

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,19 @@
44
"env": {
55
"node": true
66
},
7-
"plugins": ["@typescript-eslint"],
7+
"plugins": ["@typescript-eslint", "only-warn"],
88
"extends": ["eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended"],
99
"parserOptions": {
1010
"sourceType": "module"
1111
},
1212
"rules": {
1313
"no-unused-vars": "off",
14-
"@typescript-eslint/no-unused-vars": [
15-
"error",
16-
{
17-
"args": "none"
18-
}
19-
],
14+
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
2015
"@typescript-eslint/ban-ts-comment": "off",
2116
"no-prototype-builtins": "off",
22-
"no-useless-escape": "off",
23-
"@typescript-eslint/no-inferrable-types": "off",
2417
"@typescript-eslint/no-empty-function": "off",
25-
"@typescript-eslint/explicit-function-return-type": ["error"]
18+
"@typescript-eslint/no-inferrable-types": "off",
19+
"@typescript-eslint/no-explicit-any": "off",
20+
"@typescript-eslint/explicit-function-return-type": ["warn"]
2621
}
2722
}

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ data.json
2121
# Exclude macOS Finder (System Explorer) View States
2222
.DS_Store
2323

24+
obsidian.css
25+
2426
!exampleVault/.obsidian
2527

2628
exampleVault/.obsidian/*
2729
!exampleVault/.obsidian/plugins
2830

2931
exampleVault/.obsidian/plugins/*
30-
!exampleVault/.obsidian/plugins/obsidian-meta-bind-plugin
31-
!exampleVault/.obsidian/plugins/obsidian-meta-bind-plugin/main.js
32+
exampleVault/.obsidian/plugins/obsidian-meta-bind-plugin/*
33+
!exampleVault/.obsidian/plugins/obsidian-meta-bind-plugin/.hotreload

LICENSE.md

Lines changed: 41 additions & 94 deletions
Large diffs are not rendered by default.

esbuild.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ esbuild
4747
],
4848
format: 'cjs',
4949
watch: !prod,
50-
target: 'es2016',
50+
target: 'es2018',
5151
logLevel: 'info',
5252
sourcemap: prod ? false : 'inline',
5353
treeShaking: true,

0 commit comments

Comments
 (0)