├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── DEVELOPMENT.md ├── EXAMPLES.md ├── LICENSE.txt ├── README.md ├── images ├── demo.gif ├── demo_setting.gif ├── icon.png └── icon.psd ├── package.json ├── src ├── extension.ts ├── index.d.ts ├── rules │ ├── rule-data.ts │ └── rule.ts └── server.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/EXAMPLES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/README.md -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/demo_setting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/images/demo_setting.gif -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/images/icon.psd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/rules/rule-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/src/rules/rule-data.ts -------------------------------------------------------------------------------- /src/rules/rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/src/rules/rule.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/src/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ics-creative/project-japanese-proofreading/HEAD/tsconfig.json --------------------------------------------------------------------------------