├── .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 ├── objective-c++.cson ├── objective-c.cson └── strings file.cson ├── package.json ├── settings └── language-objective-c.cson ├── snippets └── language-objective-c.cson └── spec └── objective-c-spec.coffee /.coffeelintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/coffeelint.json -------------------------------------------------------------------------------- /grammars/objective-c++.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/grammars/objective-c++.cson -------------------------------------------------------------------------------- /grammars/objective-c.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/grammars/objective-c.cson -------------------------------------------------------------------------------- /grammars/strings file.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/grammars/strings file.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/package.json -------------------------------------------------------------------------------- /settings/language-objective-c.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/settings/language-objective-c.cson -------------------------------------------------------------------------------- /snippets/language-objective-c.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/snippets/language-objective-c.cson -------------------------------------------------------------------------------- /spec/objective-c-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-objective-c/HEAD/spec/objective-c-spec.coffee --------------------------------------------------------------------------------