28 lines
432 B
Bash
Executable file
28 lines
432 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
rm app/assets/javascripts/app/controllers/layout_ref.coffee
|
|
rm -rf app/assets/javascripts/app/views/layout_ref/
|
|
rm app/assets/javascripts/app/controllers/karma.coffee
|
|
|
|
# tests
|
|
rm -rf test
|
|
rm -rf spec
|
|
rm .rspec
|
|
|
|
# CI
|
|
rm -rf .github
|
|
rm .gitlab-ci.yml
|
|
|
|
# linting
|
|
rm -rf .rubocop
|
|
rm .stylelintrc.json
|
|
rm .eslintignore
|
|
rm .eslintrc
|
|
rm .rubocop.yml
|
|
rm coffeelint.json
|
|
rm .overcommit.yml
|
|
|
|
# misc
|
|
rm .codeclimate.yml
|