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