2019-07-02 05:29:52 -04:00
|
|
|
pre-commit:
|
|
|
|
parallel: true
|
|
|
|
commands:
|
|
|
|
rubocop:
|
2019-11-15 09:21:51 -05:00
|
|
|
glob: "*.rb"
|
2020-04-29 01:48:38 -04:00
|
|
|
run: bundle exec rubocop --parallel {staged_files}
|
2020-03-02 14:30:23 -05:00
|
|
|
prettier:
|
|
|
|
glob: "*.{js,es6}"
|
2020-08-20 06:36:52 -04:00
|
|
|
include: "app/assets/javascripts|test/javascripts"
|
2020-03-02 14:30:23 -05:00
|
|
|
run: yarn prettier --list-different {staged_files}
|
2019-07-02 05:29:52 -04:00
|
|
|
eslint-es6:
|
2019-11-15 09:21:51 -05:00
|
|
|
glob: "*.es6"
|
2020-08-20 06:36:52 -04:00
|
|
|
include: "app/assets/javascripts|test/javascripts"
|
2019-07-02 05:29:52 -04:00
|
|
|
run: yarn eslint --ext .es6 -f compact {staged_files}
|
2020-03-12 13:29:55 -04:00
|
|
|
eslint-js:
|
2020-03-02 14:30:23 -05:00
|
|
|
glob: "*.js"
|
2020-08-20 06:36:52 -04:00
|
|
|
include: "app/assets/javascripts|test/javascripts"
|
2019-07-02 05:29:52 -04:00
|
|
|
run: yarn eslint -f compact {staged_files}
|
2020-02-06 11:26:06 -05:00
|
|
|
ember-template-lint:
|
2020-04-15 01:57:28 -04:00
|
|
|
run: yarn run ember-template-lint {staged_files}
|
2019-07-02 05:29:52 -04:00
|
|
|
yaml-syntax:
|
2019-11-15 09:21:51 -05:00
|
|
|
glob: "*.{yaml,yml}"
|
2019-12-30 22:07:44 -05:00
|
|
|
# database.yml is an erb file not a yaml file
|
|
|
|
exclude: "database.yml"
|
2019-07-02 05:29:52 -04:00
|
|
|
run: bundle exec yaml-lint {staged_files}
|
2020-06-03 15:35:08 -04:00
|
|
|
i18n-lint:
|
|
|
|
glob: "**/{client,server}.en.yml"
|
|
|
|
run: bundle exec ruby script/i18n_lint.rb {staged_files}
|
2019-07-02 05:29:52 -04:00
|
|
|
|
|
|
|
commands: &commands
|
|
|
|
bundle-install:
|
|
|
|
files: git diff --name-only HEAD master
|
2019-11-15 09:21:51 -05:00
|
|
|
glob: "{Gemfile,Gemfile.lock,*.gemspec}"
|
2019-07-02 05:29:52 -04:00
|
|
|
run: bundle install
|
|
|
|
yarn-install:
|
|
|
|
files: git diff --name-only HEAD master
|
2019-11-15 09:21:51 -05:00
|
|
|
glob: "{package.json,yarn.lock}"
|
2019-07-02 05:29:52 -04:00
|
|
|
run: yarn install
|
|
|
|
|
|
|
|
post-checkout:
|
|
|
|
commands: *commands
|
|
|
|
|
|
|
|
post-merge:
|
|
|
|
commands: *commands
|
|
|
|
|
|
|
|
post-rewrite:
|
|
|
|
commands: *commands
|
|
|
|
|
|
|
|
lints:
|
|
|
|
parallel: true
|
|
|
|
commands:
|
|
|
|
rubocop:
|
|
|
|
run: bundle exec rubocop --parallel
|
|
|
|
prettier:
|
2020-08-20 06:36:52 -04:00
|
|
|
glob: "*.{js,es6}"
|
|
|
|
include: "app/assets/javascripts|test/javascripts"
|
2019-11-15 09:21:51 -05:00
|
|
|
run: yarn prettier --list-different {all_files}
|
2019-07-02 05:29:52 -04:00
|
|
|
eslint-assets-es6:
|
|
|
|
run: yarn eslint --ext .es6 app/assets/javascripts
|
|
|
|
eslint-assets-js:
|
|
|
|
run: yarn eslint app/assets/javascripts
|
2020-08-20 06:36:52 -04:00
|
|
|
eslint-test-es6:
|
2019-07-02 05:29:52 -04:00
|
|
|
run: yarn eslint --ext .es6 test/javascripts
|
2020-08-20 06:36:52 -04:00
|
|
|
eslint-test-js:
|
|
|
|
run: yarn eslint test/javascripts
|
2019-07-02 05:29:52 -04:00
|
|
|
eslint-plugins-assets:
|
2020-06-03 15:35:08 -04:00
|
|
|
run: yarn eslint --global I18n --ext .es6 plugins/**/assets/javascripts
|
2019-07-02 05:29:52 -04:00
|
|
|
eslint-plugins-test:
|
2020-06-03 15:35:08 -04:00
|
|
|
run: yarn eslint --global I18n --ext .es6 plugins/**/test/javascripts
|
2019-07-02 05:29:52 -04:00
|
|
|
eslint-assets-tests:
|
|
|
|
run: yarn eslint app/assets/javascripts test/javascripts
|
2020-06-03 15:35:08 -04:00
|
|
|
i18n-lint:
|
|
|
|
glob: "**/{client,server}.en.yml"
|
|
|
|
run: bundle exec ruby script/i18n_lint.rb {all_files}
|