Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: voxpelli/buffered-async-iterable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2706ecb26a921e3e92c2dc776000a54b6a977951
Choose a base ref
..
head repository: voxpelli/buffered-async-iterable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 35499e50686735929be20608ac763639bf4ed640
Choose a head ref
Showing with 10 additions and 18 deletions.
  1. +2 −5 .eslintrc
  2. +7 −7 package.json
  3. +1 −6 test/.eslintrc
7 changes: 2 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "@voxpelli",
"root": true,
"rules": {
"func-style": ["warn", "declaration", { "allowArrowFunctions": true }]
}
"extends": "@voxpelli/eslint-config/esm",
"root": true
}
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -40,11 +40,11 @@
"check": "run-s clean && run-p check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
"clean": "run-p clean:*",
"prepare": "husky install",
"prepublishOnly": "run-s build",
"test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
"test-ci": "run-s test:*",
"test": "run-s check test:*",
"prepare": "husky install"
"test": "run-s check test:*"
},
"devDependencies": {
"@types/chai": "^4.3.5",
@@ -54,16 +54,16 @@
"@types/node": "^16.18.31",
"@types/sinon": "^10.0.15",
"@types/sinon-chai": "^3.2.9",
"@voxpelli/eslint-config": "^17.0.3",
"@voxpelli/tsconfig": "^7.0.0",
"@voxpelli/eslint-config": "^18.0.0",
"@voxpelli/tsconfig": "^8.0.0",
"c8": "^7.13.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-quantifiers": "^1.0.17",
"eslint": "^8.41.0",
"eslint": "^8.42.0",
"eslint-plugin-es-x": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^44.2.7",
"eslint-plugin-jsdoc": "^46.2.4",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
@@ -78,6 +78,6 @@
"sinon": "^15.1.0",
"sinon-chai": "^3.7.0",
"type-coverage": "^2.26.0",
"typescript": "~5.0.4"
"typescript": "~5.1.3"
}
}
7 changes: 1 addition & 6 deletions test/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
{
"env": {
"mocha": true
},
"rules": {
"no-unused-expressions": 0
}
"extends": "@voxpelli/eslint-config/mocha"
}