├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── coffeelint.json ├── lib └── main.coffee ├── package.json ├── set-syntax.gif └── spec ├── main-spec.coffee └── spec-helper.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | docs/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/coffeelint.json -------------------------------------------------------------------------------- /lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/lib/main.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/package.json -------------------------------------------------------------------------------- /set-syntax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/set-syntax.gif -------------------------------------------------------------------------------- /spec/main-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/spec/main-spec.coffee -------------------------------------------------------------------------------- /spec/spec-helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/set-syntax/HEAD/spec/spec-helper.coffee --------------------------------------------------------------------------------