Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
catuhana committed Jul 18, 2024
1 parent 9280562 commit 81cbbee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
node-version: 18

- name: Check linting
run: deno task lint
run: deno lint

- name: Check formatting
run: deno task lint:fmt
run: deno fmt --check

- name: Run tests
run: deno test
Expand Down
3 changes: 3 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
"singleQuote": true
},
"lint": {
"rules": {
"exclude": ["no-explicit-any"]
},
"exclude": ["npm/"]
}
}
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// TODO: Don't allow `no-explicit-any` after implementing `Theme` type.

import { _extendTheme } from './extend.ts';

import type { Preset } from '@unocss/core';
Expand Down

0 comments on commit 81cbbee

Please sign in to comment.