31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# File 'lib/codeguard.rb', line 31
def help
puts %(
codeguard help - show this message
codeguard install - install config for current project
codeguard diff - check if the files were not modified
The project will use configuration for:
- coffeelint (http://www.coffeelint.org/)
- js_hint (https://github.com/damian/jshint)
- rubocop (https://github.com/bbatsov/rubocop)
- scss_lint (https://github.com/brigade/scss-lint)
.gitmessage file will be added as a template in .git/config
)
end
|