├── .coafile ├── .gitignore ├── .rultor.yml ├── LICENSE ├── README.md ├── circle.yml ├── lib └── main.coffee ├── package.json ├── readme_assets └── coalaatom.gif └── spec ├── .coafile ├── files ├── bad.coffee ├── bad.py ├── empty.py └── good.py └── main-spec.js /.coafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/.coafile -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/.gitignore -------------------------------------------------------------------------------- /.rultor.yml: -------------------------------------------------------------------------------- 1 | merge: 2 | fast-forward: only 3 | script: echo "Nothing to do." 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/circle.yml -------------------------------------------------------------------------------- /lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/lib/main.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/package.json -------------------------------------------------------------------------------- /readme_assets/coalaatom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/readme_assets/coalaatom.gif -------------------------------------------------------------------------------- /spec/.coafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/spec/.coafile -------------------------------------------------------------------------------- /spec/files/bad.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/spec/files/bad.coffee -------------------------------------------------------------------------------- /spec/files/bad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/spec/files/bad.py -------------------------------------------------------------------------------- /spec/files/empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/files/good.py: -------------------------------------------------------------------------------- 1 | """Test file""" 2 | -------------------------------------------------------------------------------- /spec/main-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-atom/HEAD/spec/main-spec.js --------------------------------------------------------------------------------