discourse/lefthook.yml
David Taylor e3ca66135c
DEV: Remove ember-template-lint (#40077)
The latest version of `@discourse/lint-configs` (and in turn `eslint-plugin-ember`) ships with eslint rules & configuration which replicate all the functionality which was previously provided by ember-template-lint.
2026-05-15 20:54:13 +01:00

159 lines
4.1 KiB
YAML
Vendored

output:
- summary
- empty_summary
- failure
- execution
- execution_out
- execution_info
- skips
glob_matcher: doublestar
pre-commit:
parallel: true
skip:
- merge
- rebase
commands:
rubocop:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec rubocop --force-exclusion {staged_files}
syntax_tree:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec stree check Gemfile {staged_files}
prettier:
glob:
- "app/assets/stylesheets/**/*.{css,scss}"
- "frontend/**/*.{js,gjs,scss,css,cjs,mjs}"
- "plugins/**/*.{js,gjs,scss,css,cjs,mjs}"
- "themes/**/*.{js,gjs,scss,css,cjs,mjs}"
run: pnpm pprettier --list-different {staged_files}
eslint:
glob:
- "frontend/**/*.{js,gjs}"
- "plugins/**/*.{js,gjs}"
- "themes/**/*.{js,gjs}"
run: pnpm eslint --max-warnings 0 {staged_files}
yaml-syntax:
glob: "**/*.{yaml,yml}"
# database.yml is an erb file not a yaml file
exclude: "config/database.yml"
run: bundle exec yaml-lint {staged_files}
i18n-lint:
glob: "**/{client,server}.en.yml"
run: bundle exec ruby script/i18n_lint.rb {staged_files}
stylelint:
glob:
- "app/assets/stylesheets/**/*.scss"
- "plugins/**/assets/stylesheets/**/*.scss"
- "themes/**/*.scss"
run: pnpm stylelint {staged_files}
fix-staged:
parallel: false
commands:
prettier:
glob:
- "app/assets/stylesheets/**/*.{css,scss}"
- "frontend/**/*.{js,gjs,scss,css,cjs,mjs}"
- "plugins/**/*.{js,gjs,scss,css,cjs,mjs}"
- "themes/**/*.{js,gjs,scss,css,cjs,mjs}"
run: pnpm pprettier --write {staged_files}
eslint:
glob:
- "frontend/**/*.{js,gjs}"
- "plugins/**/*.{js,gjs}"
- "themes/**/*.{js,gjs}"
run: pnpm eslint --fix {staged_files}
stylelint:
glob:
- "app/assets/stylesheets/**/*.scss"
- "plugins/**/assets/stylesheets/**/*.scss"
- "themes/**/*.scss"
run: pnpm stylelint --fix {staged_files}
rubocop:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec rubocop --force-exclusion -A {staged_files}
syntax_tree:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec stree write Gemfile {staged_files}
fix-all:
parallel: false
commands:
prettier:
run: pnpm lint:prettier:fix
eslint:
run: pnpm lint:js:fix
stylelint:
run: pnpm lint:css:fix
rubocop:
run: bundle exec rubocop --force-exclusion -A
syntax_tree:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec stree write Gemfile {all_files}
lints:
parallel: true
commands:
rubocop:
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec rubocop
syntax_tree:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec stree check Gemfile {all_files}
prettier:
run: pnpm lint:prettier
eslint:
run: pnpm lint:js
stylelint:
run: pnpm lint:css
yaml-syntax:
glob: "**/*.{yaml,yml}"
# database.yml is an erb file not a yaml file
exclude: "config/database.yml"
run: bundle exec yaml-lint {all_files}
i18n-lint:
glob: "**/{client,server}.en.yml"
run: bundle exec ruby script/i18n_lint.rb {all_files}
glint:
run: pnpm lint:types