├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE ├── README.md ├── images └── logo.png ├── package.json └── src ├── chatgpt.js ├── extension.js ├── test ├── runTest.ts └── suite │ ├── extension.test.ts │ └── index.ts └── testExtension.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/images/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/package.json -------------------------------------------------------------------------------- /src/chatgpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/src/chatgpt.js -------------------------------------------------------------------------------- /src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/src/extension.js -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/testExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilindPurswani/chatgpt-code-analyzer/HEAD/src/testExtension.js --------------------------------------------------------------------------------