Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,3 @@ jobs:
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
# or https://code.claude.com/docs/en/cli-reference for available options
# claude_args: '--allowed-tools Bash(gh pr *)'

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
npm-debug.log
node_modules
lib
12 changes: 12 additions & 0 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "lf",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"sortImports": true,
"sortPackageJson": true
}
13 changes: 13 additions & 0 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["unicorn", "oxc"],
"categories": {
"correctness": "error"
},
"rules": {
"no-useless-escape": "off",
"prefer-const": "error",
"no-unused-vars": "off"
},
"ignorePatterns": ["lib/**", "node_modules/**"]
}
22 changes: 0 additions & 22 deletions eslint.config.mjs

This file was deleted.

29 changes: 18 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
{
"name": "vim",
"main": "./src/vim",
"version": "3.1.4",
"description": "vim keybindings",
"keywords": [],
"repository": "https://github.com/inkdropapp/inkdrop-vim",
"license": "MIT",
"repository": "https://github.com/inkdropapp/inkdrop-vim",
"main": "./lib/index",
"scripts": {
"lint": "eslint ."
},
"engines": {
"inkdrop": "^6.x"
"dev": "tsdown --watch",
"build": "tsdown",
"format": "oxfmt",
"lint": "oxlint",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3"
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.8",
"@inkdropapp/types": "^0.0.10",
"@replit/codemirror-vim": "^6.4.0",
"oxfmt": "^0.62.0",
"oxlint": "^1.77.0",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
},
"dependencies": {
"@replit/codemirror-vim": "^6.3.0"
"engines": {
"inkdrop": "^6.x"
}
}
Loading