Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
LoaderB0T committed Oct 3, 2024
1 parent 589629b commit f8ee4de
Show file tree
Hide file tree
Showing 4 changed files with 1,048 additions and 285 deletions.
10 changes: 0 additions & 10 deletions .eslintrc.json

This file was deleted.

11 changes: 11 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import awdwareNode from '@awdware/eslint-config-nodejs';

export default [
{
ignores: ['test/**/*', '**/jest.config.ts', 'eslint.config.mjs'],
},
...awdwareNode,
{
rules: {},
},
];
85 changes: 43 additions & 42 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,43 @@
{
"name": "cypress-easy-network-stub",
"version": "3.2.1",
"main": "lib/index.js",
"repository": "https://github.com/LoaderB0T/cypress-easy-network-stub.git",
"author": {
"name": "Janik Schumacher (LoaderB0T)",
"url": "https://awdware.de"
},
"license": "MIT",
"prettier": "@awdware/prettier-config",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm eslint ./src/**",
"clean": "pnpm rimraf lib",
"build": "pnpm run clean && pnpm tsc",
"test": "pnpm cypress run --project test",
"test-open": "pnpm cypress open --project test"
},
"dependencies": {
"easy-network-stub": "^7.1.0"
},
"devDependencies": {
"@awdware/eslint-config-base": "^1.2.0",
"@awdware/eslint-config-nodejs": "^1.0.0",
"@awdware/prettier-config": "^1.0.0",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cypress": "^13.13.2",
"cypress-multi-reporters": "^1.6.4",
"eslint": "^8.57.0",
"mocha-junit-reporter": "^2.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"peerDependencies": {
"cypress": ">= 6.0"
}
}
{
"name": "cypress-easy-network-stub",
"version": "3.2.1",
"main": "lib/index.js",
"repository": "https://github.com/LoaderB0T/cypress-easy-network-stub.git",
"author": {
"name": "Janik Schumacher (LoaderB0T)",
"url": "https://awdware.de"
},
"license": "MIT",
"prettier": "@awdware/prettier-config",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm eslint ./src/**",
"clean": "pnpm rimraf lib",
"build": "pnpm run clean && pnpm tsc",
"test": "pnpm cypress run --project test",
"test-open": "pnpm cypress open --project test"
},
"dependencies": {
"easy-network-stub": "^7.1.0"
},
"devDependencies": {
"@awdware/eslint-config-base": "^2.1.0",
"@awdware/eslint-config-nodejs": "^2.0.0",
"@awdware/prettier-config": "^1.0.0",
"@types/node": "^22.0.2",
"cypress": "^13.13.2",
"cypress-multi-reporters": "^1.6.4",
"eslint": "^9.11.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-unused-imports": "4.1.4",
"mocha-junit-reporter": "^2.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "8.8.0"
},
"peerDependencies": {
"cypress": ">= 6.0"
}
}
Loading

0 comments on commit f8ee4de

Please sign in to comment.