Skip to content

Commit 2b44182

Browse files
committed
chore: fix eslint
1 parent b389b2f commit 2b44182

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

eslint.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import tseslint from 'typescript-eslint'
66
export default [
77
...tseslint.config(eslint.configs.recommended, tseslint.configs.recommended),
88
{
9-
ignores: ['**/__sdk.js', '**/*.test.ts'],
9+
ignores: ['**/sdk.js', '**/*.test.ts'],
1010
},
1111
{
1212
rules: {

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
"build:sdk": "rollup -c rollup-sdk.config.mjs",
3434
"build:package": "rollup -c rollup.config.mjs",
3535
"jest": "JEST_AIRTABLE_TS_DEV=true jest",
36+
"jest:ci": "JEST_AIRTABLE_TS_DEV=true jest --reporters=default --reporters=jest-junit",
3637
"test": "run-s build:sdk jest",
37-
"test:ci": "run-s build:sdk jest --reporters=default --reporters=jest-junit",
38-
"ci": "run-s lint test:ci",
38+
"ci": "run-s lint jest:ci",
3939
"watch": "npm-watch test",
4040
"lint": "eslint ./src",
4141
"prepare": "husky"

0 commit comments

Comments
 (0)