Fix lint errors

This commit is contained in:
Sami Samhuri 2025-06-08 13:24:05 -07:00
parent 0498bc5684
commit b12e3b5b13
No known key found for this signature in database
3 changed files with 12 additions and 5 deletions

View file

@ -2,7 +2,10 @@ name: CI
on:
pull_request:
branches: [ '**' ]
branches: ["**"]
permissions:
contents: read
jobs:
# Set the job key. The key is displayed as the job name
@ -10,7 +13,7 @@ jobs:
tests:
strategy:
matrix:
ruby: [ '3.4', '3.3', '3.2' ]
ruby: ["3.4", "3.3", "3.2"]
name: Tests - Ruby ${{ matrix.ruby }}
# Set the type of machine to run on

View file

@ -16,7 +16,10 @@ name: Lint Code Base
#############################
on:
pull_request:
branches: [ '**' ]
branches: ["**"]
permissions:
contents: read
###############
# Set the Job #

View file

@ -1,4 +1,5 @@
{
"threshold": 1,
"ignore": ["spec/**"]
}
"ignore": ["spec/**"],
"reporters": ["threshold"]
}