├── .github ├── no-response.yml └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── coffeelint.json ├── grammars └── todo.cson ├── package.json ├── snippets └── todo.cson └── spec └── todo-spec.coffee /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/coffeelint.json -------------------------------------------------------------------------------- /grammars/todo.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/grammars/todo.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/package.json -------------------------------------------------------------------------------- /snippets/todo.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/snippets/todo.cson -------------------------------------------------------------------------------- /spec/todo-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-todo/HEAD/spec/todo-spec.coffee --------------------------------------------------------------------------------