Skip to content

Commit

Permalink
rm delta from matrix, copy over global linting rules to site specific…
Browse files Browse the repository at this point in the history
… biome config
  • Loading branch information
salieflewis committed Jan 20, 2024
1 parent 431e897 commit c66166d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
project: ['apps/delta', 'apps/site']
project: ['apps/site']
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
18 changes: 17 additions & 1 deletion apps/site/biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,23 @@
"linter": {
"enabled": true,
"rules": {
"recommended": true
"recommended": true,
"suspicious": {
"noRedeclare": "off",
"noArrayIndexKey": "off"
},
"complexity": {
"useOptionalChain": "off",
"noExtraBooleanCast": "off",
"noForEach": "off"
},
"correctness": {
"useExhaustiveDependencies": "off"
},
"a11y": {
"noSvgWithoutTitle": "off",
"useKeyWithClickEvents": "off"
}
},
"include": [
"./abi/**",
Expand Down

0 comments on commit c66166d

Please sign in to comment.