gitextract_gosdofly/ ├── .coddx-template ├── .editorconfig ├── .gitignore ├── .prettierrc.yml ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO.md ├── docs/ │ ├── documentation.md │ ├── generate-files.md │ └── task-board.md ├── package.json ├── src/ │ ├── .editorconfig │ ├── .gitignore │ ├── .prettierrc.yml │ ├── .vscodeignore │ ├── extension.ts │ ├── test/ │ │ ├── extension.test.ts │ │ └── index.ts │ ├── view/ │ │ ├── TaskBoardLoader.ts │ │ ├── ViewLoader.ts │ │ └── app/ │ │ ├── Utils.ts │ │ ├── components/ │ │ │ ├── CodeGen/ │ │ │ │ ├── CodeEditor.css │ │ │ │ ├── CodeEditor.tsx │ │ │ │ ├── EditTemplatePanel.tsx │ │ │ │ ├── MainView.css │ │ │ │ └── MainView.tsx │ │ │ └── TaskBoard/ │ │ │ ├── ButtonBar.tsx │ │ │ ├── Helpers.tsx │ │ │ ├── SearchInput.tsx │ │ │ ├── Task.tsx │ │ │ ├── TaskBoard.css │ │ │ ├── TaskBoard.tsx │ │ │ ├── TaskColumn.tsx │ │ │ └── TaskMenu.tsx │ │ ├── config.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── model.ts │ │ └── tsconfig.json │ └── webpack.config.js ├── tsconfig.json ├── tslint.json ├── vsc-extension-quickstart.md └── webpack.config.js