├── .gitattributes ├── .github ├── move.yml └── no-response.yml ├── .gitignore ├── .travis.yml ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── appveyor.yml ├── lib ├── helpers.js ├── main.js └── status-bar-item.js ├── package.json └── spec ├── fixtures ├── mixed-endings.md ├── unix-endings.md └── windows-endings.md └── line-ending-selector-spec.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/move.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/.travis.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/appveyor.yml -------------------------------------------------------------------------------- /lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/lib/helpers.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/status-bar-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/lib/status-bar-item.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/package.json -------------------------------------------------------------------------------- /spec/fixtures/mixed-endings.md: -------------------------------------------------------------------------------- 1 | Hello 2 | Goodbye 3 | Mixed 4 | -------------------------------------------------------------------------------- /spec/fixtures/unix-endings.md: -------------------------------------------------------------------------------- 1 | Hello 2 | Goodbye 3 | Unix 4 | -------------------------------------------------------------------------------- /spec/fixtures/windows-endings.md: -------------------------------------------------------------------------------- 1 | Hello 2 | Goodbye 3 | Windows 4 | -------------------------------------------------------------------------------- /spec/line-ending-selector-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/line-ending-selector/HEAD/spec/line-ending-selector-spec.js --------------------------------------------------------------------------------