A SublimeText plugin to submit the active .travis.yml file in view to the Travis CI Lint service exposed from here http://lint.travis-ci.org/
Traivs YML Lint on Package Control
- Navigate to a
.travis.ymlfile in SublimeText - Press:
| OS | Key Combination |
|---|---|
| Linux | ctrl + alt + T |
| Mac | super(⌘) + alt + ctrl + T |
| Windows | ctrl + alt + T |
This will grab the yml file and validate it against the web linter. Any errors will be displayed to a plugin specific output panel.
The easiest way to install Travis YML Lint is to install it from Package Control
If you have Package Control installed, then simply naviagte to Package Control: Install Package and select the Travis YML Lint plugin and you are done!
From SublimeText Packages folder:
git clone git@github.com:sabhiram/sublime-travis-yml-lint.git sublime-travis-yml-lintCurrently there are no exposed settings used by this plugin
Appreciate the help! Here is stuff you should probably know:
Some folks prefer to clone the git repo right into their SublimeText Packages folder. While this is probably ok for most users, I prefer to create a symbolic link to the package so that I can point to the plugin from both flavors of SublimeText (for testing and the like...)
cd ~/dev
git clone git@github.com:sabhiram/sublime-travis-yml-lint.git sublime-travis-yml-lint
ln -s sublime-travis-yml-lint ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/sublime-travis-yml-lint
ln -s sublime-travis-yml-lint ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/sublime-travis-yml-lint- Bugfix: Add required modules so Package Control install works
- Implements basic plugin functionality
- Ready for package control deployment
