├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── img └── icon.png ├── package.json └── src ├── code-action-provider.js ├── extension.js └── spell-checker.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | temp 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/vscode-dandy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "standard.enable": true 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/vscode-dandy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/vscode-dandy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/vscode-dandy/HEAD/README.md -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/vscode-dandy/HEAD/img/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/vscode-dandy/HEAD/package.json -------------------------------------------------------------------------------- /src/code-action-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/vscode-dandy/HEAD/src/code-action-provider.js -------------------------------------------------------------------------------- /src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/vscode-dandy/HEAD/src/extension.js -------------------------------------------------------------------------------- /src/spell-checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/vscode-dandy/HEAD/src/spell-checker.js --------------------------------------------------------------------------------