Skip to content
This repository was archived by the owner on Mar 24, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
no-lockfile: true
npm-test-script: 'test-ci'
node-versions: '18,20,22,23,24'
node-versions: '20,22,23,24'
# We currently have some issues on Windows that will have to wait to be fixed
# os: 'ubuntu-latest,windows-latest'
os: 'ubuntu-latest'
6 changes: 3 additions & 3 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import neostandard, { resolveIgnoresFromGitignore } from 'neostandard'
const neostandard = require('neostandard')

export default neostandard({
module.exports = neostandard({
ts: true,
env: ['mocha'],
ignores: [
...resolveIgnoresFromGitignore(),
...neostandard.resolveIgnoresFromGitignore(),
],
})
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "2.1.3",
"description": "Config parser for Socket.dev",
"homepage": "http://github.com/SocketDev/socket-config-js",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git://github.com/SocketDev/socket-config-js.git"
Expand Down Expand Up @@ -54,7 +55,7 @@
"@types/node": "^14.18.36",
"c8": "^10.1.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-as-promised": "^8.0.1",
"dependency-check": "^5.0.0-7",
"husky": "^8.0.3",
"installed-check": "^9.3.0",
Expand Down
2 changes: 1 addition & 1 deletion test/parse.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { readFile } = require('node:fs/promises')
const path = require('node:path')

const chai = require('chai')
const chaiAsPromised = require('chai-as-promised')
const { default: chaiAsPromised } = require('chai-as-promised')

const {
getDefaultConfig,
Expand Down
2 changes: 1 addition & 1 deletion test/read.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const path = require('node:path')

const chai = require('chai')
const chaiAsPromised = require('chai-as-promised')
const { default: chaiAsPromised } = require('chai-as-promised')

const {
readSocketConfig
Expand Down