├── .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 ├── property list (old-style).cson └── property list (xml).cson ├── package.json ├── settings └── language-property-list.cson └── snippets └── language-property-list.cson /.coffeelintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/coffeelint.json -------------------------------------------------------------------------------- /grammars/property list (old-style).cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/grammars/property list (old-style).cson -------------------------------------------------------------------------------- /grammars/property list (xml).cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/grammars/property list (xml).cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/package.json -------------------------------------------------------------------------------- /settings/language-property-list.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/settings/language-property-list.cson -------------------------------------------------------------------------------- /snippets/language-property-list.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-property-list/HEAD/snippets/language-property-list.cson --------------------------------------------------------------------------------