In this guide we will cover two main cases:
- Ember specific library
- vendor library
The Ember library will assume that Ember has already ben loaded (higher in the loading order) and thus will assume it has access to the Ember API.
#!/usr/bin/env sh | |
# get staged file names | |
unstaged_files=$(git diff --name-only) | |
staged_files=$(git diff --cached --name-only) | |
err_output="" | |
# check each staged file via biome check | |
# @see https://biomejs.dev/reference/cli/ | |
for file in $staged_files; do |
/** | |
* SyntaxHighlighter | |
* http://alexgorbatchev.com/ | |
* | |
* SyntaxHighlighter is donationware. If you are using it, please donate. | |
* http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate | |
* | |
* @version | |
* 2.0.320 (July 26 2009) | |
* |