mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 17:47:00 -05:00
lint: clean up unnecessary config and disables (#6465)
* lint: clean up unnecessary config and disables * fix: update package import path in browser preload script
This commit is contained in:
committed by
GitHub
parent
badc97a38a
commit
c2c57e6618
@@ -1,8 +1,7 @@
|
||||
import tsparser from '@typescript-eslint/parser';
|
||||
import pluginPerfectionist from 'eslint-plugin-perfectionist';
|
||||
import pluginTypescriptPaths from 'eslint-plugin-typescript-paths';
|
||||
import { defineConfig } from 'eslint/config';
|
||||
import globals from 'globals';
|
||||
import pluginTypescript from 'typescript-eslint';
|
||||
|
||||
export default defineConfig(
|
||||
{
|
||||
@@ -40,36 +39,9 @@ export default defineConfig(
|
||||
reportUnusedDisableDirectives: true,
|
||||
},
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.browser,
|
||||
...globals.commonjs,
|
||||
...globals.node,
|
||||
...globals.jest,
|
||||
globalThis: false,
|
||||
vi: true,
|
||||
|
||||
RequestInfo: true,
|
||||
RequestInit: true,
|
||||
ParentNode: true,
|
||||
FS: true,
|
||||
IDBValidKey: true,
|
||||
NodeJS: true,
|
||||
Electron: true,
|
||||
|
||||
// Worker globals
|
||||
FetchEvent: true,
|
||||
ExtendableEvent: true,
|
||||
ExtendableMessageEvent: true,
|
||||
ServiceWorkerGlobalScope: true,
|
||||
},
|
||||
},
|
||||
settings: {
|
||||
react: {
|
||||
version: 'detect',
|
||||
},
|
||||
parser: tsparser,
|
||||
},
|
||||
},
|
||||
pluginTypescript.configs.base,
|
||||
{
|
||||
plugins: {
|
||||
perfectionist: pluginPerfectionist,
|
||||
|
||||
@@ -63,12 +63,11 @@
|
||||
"@octokit/rest": "^22.0.1",
|
||||
"@types/node": "^22.19.1",
|
||||
"@types/prompts": "^2.4.9",
|
||||
"@typescript-eslint/parser": "^8.50.0",
|
||||
"cross-env": "^10.1.0",
|
||||
"eslint": "^9.39.2",
|
||||
"eslint-import-resolver-typescript": "^4.4.4",
|
||||
"eslint-plugin-perfectionist": "^4.15.1",
|
||||
"eslint-plugin-typescript-paths": "^0.0.33",
|
||||
"globals": "^16.5.0",
|
||||
"html-to-image": "^1.11.13",
|
||||
"husky": "^9.1.7",
|
||||
"lage": "^2.14.15",
|
||||
@@ -83,7 +82,6 @@
|
||||
"source-map-support": "^0.5.21",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.9.3",
|
||||
"typescript-eslint": "^8.46.4",
|
||||
"typescript-strict-plugin": "^2.4.4"
|
||||
},
|
||||
"resolutions": {
|
||||
|
||||
@@ -9,8 +9,17 @@ export function sequentialNewlinesPlugin() {
|
||||
// Adapted from https://codesandbox.io/s/create-react-app-forked-h3rmcy?file=/src/sequentialNewlinePlugin.js:0-774
|
||||
const data = this.data();
|
||||
|
||||
// oxlint-disable-next-line typescript/no-explicit-any
|
||||
function add(field: string, value: any) {
|
||||
function add(
|
||||
field: string,
|
||||
value: {
|
||||
enter: {
|
||||
lineEndingBlank: (token: unknown) => void;
|
||||
};
|
||||
exit: {
|
||||
lineEndingBlank: (token: unknown) => void;
|
||||
};
|
||||
},
|
||||
) {
|
||||
const list = data[field] ? data[field] : (data[field] = []);
|
||||
|
||||
list.push(value);
|
||||
|
||||
@@ -221,6 +221,5 @@ export default defineConfig(async ({ mode }) => {
|
||||
},
|
||||
maxWorkers: 2,
|
||||
},
|
||||
// oxlint-disable-next-line typescript/no-explicit-any
|
||||
} satisfies UserConfig & { test: any };
|
||||
} satisfies UserConfig;
|
||||
});
|
||||
|
||||
@@ -295,19 +295,19 @@ export async function upload() {
|
||||
res = await fetchJSON(getServer().SYNC_SERVER + '/upload-user-file', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Length': uploadContent.length,
|
||||
'Content-Length': String(uploadContent.length),
|
||||
'Content-Type': 'application/encrypted-file',
|
||||
'X-ACTUAL-TOKEN': userToken,
|
||||
'X-ACTUAL-FILE-ID': cloudFileId,
|
||||
'X-ACTUAL-NAME': encodeURIComponent(budgetName),
|
||||
'X-ACTUAL-FORMAT': 2,
|
||||
'X-ACTUAL-FORMAT': '2',
|
||||
...(uploadMeta
|
||||
? { 'X-ACTUAL-ENCRYPT-META': JSON.stringify(uploadMeta) }
|
||||
: null),
|
||||
...(groupId ? { 'X-ACTUAL-GROUP-ID': groupId } : null),
|
||||
// TODO: fix me
|
||||
// oxlint-disable-next-line typescript/no-explicit-any
|
||||
} as any,
|
||||
},
|
||||
body: uploadContent,
|
||||
});
|
||||
} catch (err) {
|
||||
|
||||
@@ -80,8 +80,13 @@ export class RuleError extends Error {
|
||||
}
|
||||
}
|
||||
|
||||
// oxlint-disable-next-line typescript/no-explicit-any
|
||||
export function APIError(msg: string, meta?: Record<string, any>) {
|
||||
export function APIError(
|
||||
msg: string,
|
||||
meta?: {
|
||||
conditionErrors: string[];
|
||||
actionErrors: string[];
|
||||
},
|
||||
) {
|
||||
return { type: 'APIError', message: msg, meta };
|
||||
}
|
||||
|
||||
|
||||
6
upcoming-release-notes/6465.md
Normal file
6
upcoming-release-notes/6465.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Maintenance
|
||||
authors: [MatissJanis]
|
||||
---
|
||||
|
||||
lint: clean up unnecessary config and disables
|
||||
399
yarn.lock
399
yarn.lock
@@ -3830,7 +3830,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1":
|
||||
"@eslint-community/regexpp@npm:^4.12.1":
|
||||
version: 4.12.1
|
||||
resolution: "@eslint-community/regexpp@npm:4.12.1"
|
||||
checksum: 10/c08f1dd7dd18fbb60bdd0d85820656d1374dd898af9be7f82cb00451313402a22d5e30569c150315b4385907cdbca78c22389b2a72ab78883b3173be317620cc
|
||||
@@ -4445,7 +4445,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@napi-rs/wasm-runtime@npm:^0.2.11, @napi-rs/wasm-runtime@npm:^0.2.3":
|
||||
"@napi-rs/wasm-runtime@npm:^0.2.3":
|
||||
version: 0.2.12
|
||||
resolution: "@napi-rs/wasm-runtime@npm:0.2.12"
|
||||
dependencies:
|
||||
@@ -9256,40 +9256,19 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/eslint-plugin@npm:8.46.4":
|
||||
version: 8.46.4
|
||||
resolution: "@typescript-eslint/eslint-plugin@npm:8.46.4"
|
||||
"@typescript-eslint/parser@npm:^8.50.0":
|
||||
version: 8.50.0
|
||||
resolution: "@typescript-eslint/parser@npm:8.50.0"
|
||||
dependencies:
|
||||
"@eslint-community/regexpp": "npm:^4.10.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.46.4"
|
||||
"@typescript-eslint/type-utils": "npm:8.46.4"
|
||||
"@typescript-eslint/utils": "npm:8.46.4"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.46.4"
|
||||
graphemer: "npm:^1.4.0"
|
||||
ignore: "npm:^7.0.0"
|
||||
natural-compare: "npm:^1.4.0"
|
||||
ts-api-utils: "npm:^2.1.0"
|
||||
peerDependencies:
|
||||
"@typescript-eslint/parser": ^8.46.4
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <6.0.0"
|
||||
checksum: 10/5ae705d9dbf8cdeaf8cc2198cbfa1c3b70d5bf2fd20b5870448b53e9fe2f5a0d106162850aabd97897d250ec6fe7cebbb3f7ea2b6aa7ca9582b9b1b9e3be459f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/parser@npm:8.46.4":
|
||||
version: 8.46.4
|
||||
resolution: "@typescript-eslint/parser@npm:8.46.4"
|
||||
dependencies:
|
||||
"@typescript-eslint/scope-manager": "npm:8.46.4"
|
||||
"@typescript-eslint/types": "npm:8.46.4"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.46.4"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.46.4"
|
||||
"@typescript-eslint/scope-manager": "npm:8.50.0"
|
||||
"@typescript-eslint/types": "npm:8.50.0"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.50.0"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.50.0"
|
||||
debug: "npm:^4.3.4"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <6.0.0"
|
||||
checksum: 10/560635f5567dba6342cea2146051e5647dbc48f5fb7b0a7a6d577cada06d43e07030bb3999f90f6cd01d5b0fdb25d829a25252c84cf7a685c5c9373e6e1e4a73
|
||||
checksum: 10/4c3a1011f9122def7b184cdbbc93f2be4167adda787085edb9cee9493957625b0611c0000b8e6d9c6003a0ad2945f2e7db56b31649f03e4c58a59c4d310234b6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -9357,22 +9336,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/type-utils@npm:8.46.4":
|
||||
version: 8.46.4
|
||||
resolution: "@typescript-eslint/type-utils@npm:8.46.4"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": "npm:8.46.4"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.46.4"
|
||||
"@typescript-eslint/utils": "npm:8.46.4"
|
||||
debug: "npm:^4.3.4"
|
||||
ts-api-utils: "npm:^2.1.0"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <6.0.0"
|
||||
checksum: 10/438188d4db8889b1299df60e03be76bbbcfad6500cbdbaad83250bc3671d6d798d3eef01417dd2b4236334ed11e466b90a75d17c0d5b94b667b362ce746dd3e6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/types@npm:8.46.4, @typescript-eslint/types@npm:^8.46.4":
|
||||
version: 8.46.4
|
||||
resolution: "@typescript-eslint/types@npm:8.46.4"
|
||||
@@ -9426,21 +9389,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/utils@npm:8.46.4, @typescript-eslint/utils@npm:^8.46.2":
|
||||
version: 8.46.4
|
||||
resolution: "@typescript-eslint/utils@npm:8.46.4"
|
||||
dependencies:
|
||||
"@eslint-community/eslint-utils": "npm:^4.7.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.46.4"
|
||||
"@typescript-eslint/types": "npm:8.46.4"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.46.4"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <6.0.0"
|
||||
checksum: 10/8e11abb2e44b6e62ccf8fd9b96808cb58e68788564fa999f15b61c0ec929209ced7f92a57ffbfcaec80f926aa14dafcee756755b724ae543b4cbd84b0ffb890d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/utils@npm:^8.38.0":
|
||||
version: 8.50.0
|
||||
resolution: "@typescript-eslint/utils@npm:8.50.0"
|
||||
@@ -9456,6 +9404,21 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/utils@npm:^8.46.2":
|
||||
version: 8.46.4
|
||||
resolution: "@typescript-eslint/utils@npm:8.46.4"
|
||||
dependencies:
|
||||
"@eslint-community/eslint-utils": "npm:^4.7.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.46.4"
|
||||
"@typescript-eslint/types": "npm:8.46.4"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.46.4"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <6.0.0"
|
||||
checksum: 10/8e11abb2e44b6e62ccf8fd9b96808cb58e68788564fa999f15b61c0ec929209ced7f92a57ffbfcaec80f926aa14dafcee756755b724ae543b4cbd84b0ffb890d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/visitor-keys@npm:8.46.4":
|
||||
version: 8.46.4
|
||||
resolution: "@typescript-eslint/visitor-keys@npm:8.46.4"
|
||||
@@ -9528,141 +9491,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-android-arm-eabi@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.11.1"
|
||||
conditions: os=android & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-android-arm64@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-android-arm64@npm:1.11.1"
|
||||
conditions: os=android & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-darwin-arm64@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.11.1"
|
||||
conditions: os=darwin & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-darwin-x64@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-darwin-x64@npm:1.11.1"
|
||||
conditions: os=darwin & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-freebsd-x64@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.11.1"
|
||||
conditions: os=freebsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1"
|
||||
conditions: os=linux & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1"
|
||||
conditions: os=linux & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1"
|
||||
conditions: os=linux & cpu=arm64 & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1"
|
||||
conditions: os=linux & cpu=arm64 & libc=musl
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1"
|
||||
conditions: os=linux & cpu=ppc64 & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1"
|
||||
conditions: os=linux & cpu=riscv64 & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1"
|
||||
conditions: os=linux & cpu=riscv64 & libc=musl
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1"
|
||||
conditions: os=linux & cpu=s390x & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1"
|
||||
conditions: os=linux & cpu=x64 & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-linux-x64-musl@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.11.1"
|
||||
conditions: os=linux & cpu=x64 & libc=musl
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-wasm32-wasi@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.11.1"
|
||||
dependencies:
|
||||
"@napi-rs/wasm-runtime": "npm:^0.2.11"
|
||||
conditions: cpu=wasm32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1"
|
||||
conditions: os=win32 & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1"
|
||||
conditions: os=win32 & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1"
|
||||
conditions: os=win32 & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@use-gesture/core@npm:10.3.1":
|
||||
version: 10.3.1
|
||||
resolution: "@use-gesture/core@npm:10.3.1"
|
||||
@@ -10051,12 +9879,11 @@ __metadata:
|
||||
"@octokit/rest": "npm:^22.0.1"
|
||||
"@types/node": "npm:^22.19.1"
|
||||
"@types/prompts": "npm:^2.4.9"
|
||||
"@typescript-eslint/parser": "npm:^8.50.0"
|
||||
cross-env: "npm:^10.1.0"
|
||||
eslint: "npm:^9.39.2"
|
||||
eslint-import-resolver-typescript: "npm:^4.4.4"
|
||||
eslint-plugin-perfectionist: "npm:^4.15.1"
|
||||
eslint-plugin-typescript-paths: "npm:^0.0.33"
|
||||
globals: "npm:^16.5.0"
|
||||
html-to-image: "npm:^1.11.13"
|
||||
husky: "npm:^9.1.7"
|
||||
lage: "npm:^2.14.15"
|
||||
@@ -10071,7 +9898,6 @@ __metadata:
|
||||
source-map-support: "npm:^0.5.21"
|
||||
ts-node: "npm:^10.9.2"
|
||||
typescript: "npm:^5.9.3"
|
||||
typescript-eslint: "npm:^8.46.4"
|
||||
typescript-strict-plugin: "npm:^2.4.4"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
@@ -14612,45 +14438,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"eslint-import-context@npm:^0.1.8":
|
||||
version: 0.1.9
|
||||
resolution: "eslint-import-context@npm:0.1.9"
|
||||
dependencies:
|
||||
get-tsconfig: "npm:^4.10.1"
|
||||
stable-hash-x: "npm:^0.2.0"
|
||||
peerDependencies:
|
||||
unrs-resolver: ^1.0.0
|
||||
peerDependenciesMeta:
|
||||
unrs-resolver:
|
||||
optional: true
|
||||
checksum: 10/f0778126bb3aae57c8c68946c71c4418927e9d39f72099b799d9c47a3b5712d6c9166b63ee8be58a020961dcc9216df09c856b825336af375ccbbdeedfc82a99
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"eslint-import-resolver-typescript@npm:^4.4.4":
|
||||
version: 4.4.4
|
||||
resolution: "eslint-import-resolver-typescript@npm:4.4.4"
|
||||
dependencies:
|
||||
debug: "npm:^4.4.1"
|
||||
eslint-import-context: "npm:^0.1.8"
|
||||
get-tsconfig: "npm:^4.10.1"
|
||||
is-bun-module: "npm:^2.0.0"
|
||||
stable-hash-x: "npm:^0.2.0"
|
||||
tinyglobby: "npm:^0.2.14"
|
||||
unrs-resolver: "npm:^1.7.11"
|
||||
peerDependencies:
|
||||
eslint: "*"
|
||||
eslint-plugin-import: "*"
|
||||
eslint-plugin-import-x: "*"
|
||||
peerDependenciesMeta:
|
||||
eslint-plugin-import:
|
||||
optional: true
|
||||
eslint-plugin-import-x:
|
||||
optional: true
|
||||
checksum: 10/4f871f6d1a04c55c2087c5ff1030f783a29abb59901b354d7ef58a0fc687d379dcbd08cf377cddeb7e19f26dd380d32d85ee4760e9410a059639d2b3df7d1ff3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"eslint-plugin-actual@workspace:packages/eslint-plugin-actual":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "eslint-plugin-actual@workspace:packages/eslint-plugin-actual"
|
||||
@@ -15970,7 +15757,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"get-tsconfig@npm:^4.10.0, get-tsconfig@npm:^4.10.1":
|
||||
"get-tsconfig@npm:^4.10.0":
|
||||
version: 4.11.0
|
||||
resolution: "get-tsconfig@npm:4.11.0"
|
||||
dependencies:
|
||||
@@ -16182,13 +15969,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"globals@npm:^16.5.0":
|
||||
version: 16.5.0
|
||||
resolution: "globals@npm:16.5.0"
|
||||
checksum: 10/f9e8a2a13f50222c127030a619e283e7bbfe32966316bdde0715af1d15a7e40cb9c24ff52cad59671f97762ed8b515353c2f8674f560c63d9385f19ee26735a6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"globalthis@npm:^1.0.1, globalthis@npm:^1.0.4":
|
||||
version: 1.0.4
|
||||
resolution: "globalthis@npm:1.0.4"
|
||||
@@ -16299,13 +16079,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"graphemer@npm:^1.4.0":
|
||||
version: 1.4.0
|
||||
resolution: "graphemer@npm:1.4.0"
|
||||
checksum: 10/6dd60dba97007b21e3a829fab3f771803cc1292977fe610e240ea72afd67e5690ac9eeaafc4a99710e78962e5936ab5a460787c2a1180f1cb0ccfac37d29f897
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"gray-matter@npm:^4.0.3":
|
||||
version: 4.0.3
|
||||
resolution: "gray-matter@npm:4.0.3"
|
||||
@@ -17201,13 +16974,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ignore@npm:^7.0.0":
|
||||
version: 7.0.5
|
||||
resolution: "ignore@npm:7.0.5"
|
||||
checksum: 10/f134b96a4de0af419196f52c529d5c6120c4456ff8a6b5a14ceaaa399f883e15d58d2ce651c9b69b9388491d4669dda47285d307e827de9304a53a1824801bc6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"image-size@npm:^2.0.2":
|
||||
version: 2.0.2
|
||||
resolution: "image-size@npm:2.0.2"
|
||||
@@ -17509,15 +17275,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"is-bun-module@npm:^2.0.0":
|
||||
version: 2.0.0
|
||||
resolution: "is-bun-module@npm:2.0.0"
|
||||
dependencies:
|
||||
semver: "npm:^7.7.1"
|
||||
checksum: 10/cded5a1a58368b847872d08617975d620ad94426d76a932f3e08d55b4574d199e0a62a4fb024fa2dc444200b71719eb0bffc5d3d1e1cc82e29b293bb8d66a990
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"is-callable@npm:^1.2.7":
|
||||
version: 1.2.7
|
||||
resolution: "is-callable@npm:1.2.7"
|
||||
@@ -20531,15 +20288,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"napi-postinstall@npm:^0.3.0":
|
||||
version: 0.3.4
|
||||
resolution: "napi-postinstall@npm:0.3.4"
|
||||
bin:
|
||||
napi-postinstall: lib/cli.js
|
||||
checksum: 10/5541381508f9e1051ff3518701c7130ebac779abb3a1ffe9391fcc3cab4cc0569b0ba0952357db3f6b12909c3bb508359a7a60261ffd795feebbdab967175832
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"natural-compare@npm:^1.4.0":
|
||||
version: 1.4.0
|
||||
resolution: "natural-compare@npm:1.4.0"
|
||||
@@ -24827,7 +24575,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"semver@npm:^7.3.2, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3, semver@npm:^7.7.1":
|
||||
"semver@npm:^7.3.2, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3":
|
||||
version: 7.7.3
|
||||
resolution: "semver@npm:7.7.3"
|
||||
bin:
|
||||
@@ -25546,13 +25294,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"stable-hash-x@npm:^0.2.0":
|
||||
version: 0.2.0
|
||||
resolution: "stable-hash-x@npm:0.2.0"
|
||||
checksum: 10/136f05d0e4d441876012b423541476ff5b695c93b56d1959560be858b9e324ea6de6c16ecbd735a040ee8396427dd867bed0bf90b2cdb1fc422566747b91a0e5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"stack-trace@npm:0.0.x":
|
||||
version: 0.0.10
|
||||
resolution: "stack-trace@npm:0.0.10"
|
||||
@@ -26359,7 +26100,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"tinyglobby@npm:^0.2.10, tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15":
|
||||
"tinyglobby@npm:^0.2.10, tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.15":
|
||||
version: 0.2.15
|
||||
resolution: "tinyglobby@npm:0.2.15"
|
||||
dependencies:
|
||||
@@ -26795,21 +26536,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript-eslint@npm:^8.46.4":
|
||||
version: 8.46.4
|
||||
resolution: "typescript-eslint@npm:8.46.4"
|
||||
dependencies:
|
||||
"@typescript-eslint/eslint-plugin": "npm:8.46.4"
|
||||
"@typescript-eslint/parser": "npm:8.46.4"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.46.4"
|
||||
"@typescript-eslint/utils": "npm:8.46.4"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <6.0.0"
|
||||
checksum: 10/6d28371033653395f1108d880f32ed5b03c15d94a4ca7564b81cdb5c563fa618b48cbcb6c00f3341e3399b27711feb1073305b425a22de23786a87c6a3a19ccd
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript-strict-plugin@npm:^2.4.4":
|
||||
version: 2.4.4
|
||||
resolution: "typescript-strict-plugin@npm:2.4.4"
|
||||
@@ -27131,73 +26857,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"unrs-resolver@npm:^1.7.11":
|
||||
version: 1.11.1
|
||||
resolution: "unrs-resolver@npm:1.11.1"
|
||||
dependencies:
|
||||
"@unrs/resolver-binding-android-arm-eabi": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-android-arm64": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-darwin-arm64": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-darwin-x64": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-freebsd-x64": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-arm64-gnu": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-arm64-musl": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-riscv64-musl": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-s390x-gnu": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-x64-gnu": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-linux-x64-musl": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-wasm32-wasi": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-win32-arm64-msvc": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-win32-ia32-msvc": "npm:1.11.1"
|
||||
"@unrs/resolver-binding-win32-x64-msvc": "npm:1.11.1"
|
||||
napi-postinstall: "npm:^0.3.0"
|
||||
dependenciesMeta:
|
||||
"@unrs/resolver-binding-android-arm-eabi":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-android-arm64":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-darwin-arm64":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-darwin-x64":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-freebsd-x64":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-arm-gnueabihf":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-arm-musleabihf":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-arm64-gnu":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-arm64-musl":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-ppc64-gnu":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-riscv64-gnu":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-riscv64-musl":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-s390x-gnu":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-x64-gnu":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-linux-x64-musl":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-wasm32-wasi":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-win32-arm64-msvc":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-win32-ia32-msvc":
|
||||
optional: true
|
||||
"@unrs/resolver-binding-win32-x64-msvc":
|
||||
optional: true
|
||||
checksum: 10/4de653508cbaae47883a896bd5cdfef0e5e87b428d62620d16fd35cd534beaebf08ebf0cf2f8b4922aa947b2fe745180facf6cc3f39ba364f7ce0f974cb06a70
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"untildify@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "untildify@npm:4.0.0"
|
||||
|
||||
Reference in New Issue
Block a user