Skip to content
Open
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
2 changes: 1 addition & 1 deletion asian-autocorrect
Submodule asian-autocorrect updated 58 files
+2 −1 .autocorrectignore
+6 −6 .github/workflows/ci.yml
+6 −1 .github/workflows/release-node.yml
+1,330 −75 Cargo.lock
+0 −1 Cargo.toml
+1 −1 Makefile
+1 −0 README.md
+2 −2 autocorrect-cli/Cargo.toml
+6 −6 autocorrect-cli/src/lib.rs
+1 −1 autocorrect-derive/Cargo.toml
+2 −2 autocorrect-java/Cargo.toml
+1 −1 autocorrect-java/javasrc/pom.xml
+8 −1 autocorrect-lsp/Cargo.toml
+257 −122 autocorrect-lsp/src/lib.rs
+98 −0 autocorrect-lsp/src/typocheck.rs
+4 −4 autocorrect-node/Cargo.toml
+1 −1 autocorrect-node/package.json
+2 −2 autocorrect-py/Cargo.toml
+3 −1 autocorrect-py/src/lib.rs
+2 −2 autocorrect-rb/README.md
+1 −1 autocorrect-rb/autocorrect-rb.gemspec
+2 −2 autocorrect-rb/ext/autocorrect/Cargo.toml
+0 −11 autocorrect-swift/Cargo.toml
+0 −50 autocorrect-swift/autocorrect_swift.h
+0 −301 autocorrect-swift/src/lib.rs
+2 −2 autocorrect-wasm/Cargo.toml
+2 −2 autocorrect-website/index.html
+60 −60 autocorrect-website/public/schema.json
+1 −1 autocorrect-website/src/AppEditor.tsx
+11 −11 autocorrect-website/src/examples.js
+1 −1 autocorrect-website/src/style.scss
+2 −2 autocorrect-website/src/welcome.tsx
+2 −0 autocorrect/.autocorrectrc.default
+2 −2 autocorrect/Cargo.toml
+3 −3 autocorrect/README.md
+4 −4 autocorrect/grammar/gettext.pest
+4 −4 autocorrect/grammar/html.pest
+22 −0 autocorrect/grammar/lua.pest
+1 −1 autocorrect/grammar/markdown.pest
+4 −4 autocorrect/grammar/objective_c.pest
+4 −4 autocorrect/grammar/swift.pest
+1 −1 autocorrect/src/code/code.rs
+2 −2 autocorrect/src/code/csharp.rs
+217 −0 autocorrect/src/code/lua.rs
+2 −0 autocorrect/src/code/markdown.rs
+4 −0 autocorrect/src/code/mod.rs
+8 −5 autocorrect/src/config/mod.rs
+1 −1 autocorrect/src/config/spellcheck.rs
+1 −1 autocorrect/src/config/toggle.rs
+3 −3 autocorrect/src/format.rs
+13 −10 autocorrect/src/ignorer.rs
+3 −3 autocorrect/src/result/mod.rs
+10 −10 autocorrect/src/rule/fullwidth.rs
+2 −2 autocorrect/src/rule/halfwidth.rs
+2 −2 autocorrect/src/rule/spellcheck.rs
+1 −1 autocorrect/src/rule/word.rs
+1 −1 tests/fixtures/markdown.fixed.md
+1 −1 tests/fixtures/markdown.raw.md
Loading