Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: logonoff/obsidian-inline-spoilers
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.0
Choose a base ref
...
head repository: logonoff/obsidian-inline-spoilers
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 15 commits
  • 10 files changed
  • 1 contributor

Commits on Jul 8, 2024

  1. 1.0.1

    logonoff committed Jul 8, 2024
    Copy the full SHA
    1b5ec7a View commit details
  2. 1.0.2

    logonoff committed Jul 8, 2024
    Copy the full SHA
    a55de32 View commit details
  3. Copy the full SHA
    42009d7 View commit details

Commits on Oct 1, 2024

  1. minify build

    logonoff committed Oct 1, 2024
    Copy the full SHA
    7beaec7 View commit details
  2. LICENSE: switch to gplv3

    logonoff committed Oct 1, 2024
    Copy the full SHA
    420b933 View commit details
  3. bump 1.1.0

    logonoff committed Oct 1, 2024
    Copy the full SHA
    7d5f38c View commit details

Commits on Oct 20, 2024

  1. Copy the full SHA
    54bce4e View commit details
  2. Copy the full SHA
    b14c4aa View commit details
  3. Copy the full SHA
    d92df06 View commit details

Commits on Oct 21, 2024

  1. Copy the full SHA
    1b871ad View commit details
  2. organize imports

    logonoff committed Oct 21, 2024
    Copy the full SHA
    ad069c7 View commit details
  3. format .eslintrc

    logonoff committed Oct 21, 2024
    Copy the full SHA
    8b64fe7 View commit details
  4. Copy the full SHA
    a6ed029 View commit details
  5. bump 1.1.1

    logonoff committed Oct 21, 2024
    Copy the full SHA
    9b3dfe4 View commit details

Commits on Nov 15, 2024

  1. Copy the full SHA
    6b94ae0 View commit details
Showing with 1,029 additions and 153 deletions.
  1. +29 −22 .eslintrc
  2. +673 −23 LICENSE.md
  3. +6 −2 README.md
  4. +7 −6 esbuild.config.mjs
  5. +224 −63 main.ts
  6. +3 −3 manifest.json
  7. +21 −15 package-lock.json
  8. +17 −9 package.json
  9. +43 −10 styles.css
  10. +6 −0 versions.json
51 changes: 29 additions & 22 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
{
"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"
}
}
"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"
}
}
Loading