├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── README.md ├── extension.js ├── jsconfig.json ├── logo-small.png ├── logo.png ├── package.json ├── test ├── runTest.js └── suite │ ├── extension.test.js │ └── index.js ├── usage.gif └── vsc-extension-quickstart.md /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/README.md -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/extension.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/jsconfig.json -------------------------------------------------------------------------------- /logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/logo-small.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/package.json -------------------------------------------------------------------------------- /test/runTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/test/runTest.js -------------------------------------------------------------------------------- /test/suite/extension.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/test/suite/extension.test.js -------------------------------------------------------------------------------- /test/suite/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/test/suite/index.js -------------------------------------------------------------------------------- /usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/usage.gif -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NesHacker/neshacker-code/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------