Skip to content

Commit 6d90531

Browse files
authored
Merge pull request #8 from bloq/bump-repo-deps-ci
Bump repo deps ci
2 parents 02a5fb3 + b76dfb1 commit 6d90531

11 files changed

Lines changed: 2566 additions & 1244 deletions

File tree

.eslintrc.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"extends": ["bloq", "prettier"],
3+
"ignorePatterns": "packages/*/dist/*",
4+
"overrides": [
5+
{
6+
"extends": ["bloq/typescript", "prettier"],
7+
"files": ["packages/**/*.ts"]
8+
},
9+
{
10+
"extends": ["bloq/vitest", "prettier"],
11+
"files": ["*.{spec,test}.{js,ts}"]
12+
}
13+
],
14+
"parserOptions": {
15+
"sourceType": "module"
16+
}
17+
}

.github/workflows/CI_Checks.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/js-checks.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: JS Checks
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
9+
cancel-in-progress: true
10+
11+
jobs:
12+
js-checks:
13+
uses: hemilabs/actions/.github/workflows/js-checks.yml@main

knip.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* @type {import('knip').KnipConfig}
3+
*/
4+
const config = {
5+
ignoreDependencies: ['eslint-config-prettier']
6+
}
7+
8+
export default config

0 commit comments

Comments
 (0)