Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,49 @@ commands:

- run:
name: Database setup
<<<<<<< HEAD
=======
command: bin/rails db:setup --trace

- run:
name: Typescript
command: pnpm tscheck

- run:
name: Find Unused ESLint Rules
command: pnpm eslint_find_unused_rules

- run:
name: ESLint
command: pnpm eslint

- run:
name: Verify ESLint Autogen
command: bundle exec exe/eslint_autogen

- run:
name: Vitest
command: pnpm vitest run --coverage

- run:
name: Brakeman
command: bundle exec brakeman

- run:
name: Stylelint
command: pnpm stylelint

- run:
name: Verify Stylelint Autogen
command: bundle exec exe/stylelint_autogen

- run:
name: Rubocop
command: bundle exec rubocop

- run:
name: ✨ 🌈 ✨ Run Unit Tests ✨ 🌈 ✨
>>>>>>> a78f4bae (fix autogen scripts (#1337))
command: |
bin/rails db:create
bin/rails db:schema:load
Expand Down
4 changes: 4 additions & 0 deletions .stylelint_todo.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# This configuration was generated by `exe/stylelint_autogen`
<<<<<<< HEAD
# on 2025-05-20 00:12:11 UTC.
=======
# on 2026-02-12 23:23:33 UTC.
>>>>>>> a78f4bae (fix autogen scripts (#1337))
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.

Expand Down
4 changes: 4 additions & 0 deletions exe/eslint_autogen
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ HEADING = <<~COMMENTS.freeze
COMMENTS
MAX_FILES_FOR_OVERRIDES = 4_000_000

<<<<<<< HEAD
File.write(TODO_FILE_PATH, "export default [];\n")
=======
File.write(TODO_FILE_PATH, "export default []")
>>>>>>> a78f4bae (fix autogen scripts (#1337))
json = `pnpm --silent eslint --format json`
results = JSON.parse(json)

Expand Down