Skip to content

Commit

Permalink
feat: tab icon
Browse files Browse the repository at this point in the history
  • Loading branch information
hdykokd committed Jul 10, 2023
1 parent 875699b commit 23a09c2
Show file tree
Hide file tree
Showing 14 changed files with 1,027 additions and 64 deletions.
42 changes: 20 additions & 22 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
{
"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", "varsIgnorePattern": "^_" }],
"@typescript-eslint/ban-ts-comment": "off",
"no-prototype-builtins": "off",
"@typescript-eslint/no-empty-function": "off"
}
}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "npx eslint ./src",
"test": "vitest",
"check-format": "npx prettier --check src",
"format": "npx prettier --write src",
"version": "node version-bump.mjs && git add manifest.json versions.json",
Expand All @@ -26,7 +27,8 @@
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
"typescript": "4.7.4",
"vitest": "^0.33.0"
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit 23a09c2

Please sign in to comment.