Skip to content

Commit 59d89b2

Browse files
committed
Fixed code style and tests.
1 parent bea70d8 commit 59d89b2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+429
-421
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- master
1010
schedule:
11-
- cron: '16 11 * * 2'
11+
- cron: "16 11 * * 2"
1212

1313
jobs:
1414
analyze:
@@ -41,4 +41,4 @@ jobs:
4141
- name: Perform CodeQL Analysis
4242
uses: github/codeql-action/analyze@v2
4343
with:
44-
category: '/language:${{ matrix.language }}'
44+
category: "/language:${{ matrix.language }}"

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
with:
3838
# This expects you to have a script called release which does a build for your packages and calls changeset publish
3939
publish: yarn release
40-
commit: 'chore: release eslint-import-resolver-typescript'
41-
title: 'chore: release eslint-import-resolver-typescript'
40+
commit: "chore: release eslint-import-resolver-typescript"
41+
title: "chore: release eslint-import-resolver-typescript"
4242
env:
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4444
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

dummy.js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = 'dummy'
1+
module.exports = "dummy";

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
"eslint-plugin-mdx": "^3.1.5",
9292
"eslint-plugin-prettier": "^4",
9393
"eslint-plugin-yml": "^1.14.0",
94+
"json5": "^2.2.3",
9495
"npm-run-all2": "^5.0.2",
9596
"prettier": "^2.8.8",
9697
"react": "^18.2.0",

shim.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
declare module 'eslint-module-utils/hash.js' {
2-
import type { Hash } from 'node:crypto'
3-
export const hashObject: (object: object, hash?: Hash) => Hash
1+
declare module "eslint-module-utils/hash.js" {
2+
import type { Hash } from "node:crypto";
3+
export const hashObject: (object: object, hash?: Hash) => Hash;
44
}

0 commit comments

Comments
 (0)