├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── lib ├── index.js └── touchbarUI.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.1.0 - First Release 2 | * Display error, warning and info messages 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haklop/linter-ui-touchbar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haklop/linter-ui-touchbar/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haklop/linter-ui-touchbar/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/touchbarUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haklop/linter-ui-touchbar/HEAD/lib/touchbarUI.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haklop/linter-ui-touchbar/HEAD/package.json --------------------------------------------------------------------------------