Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
karniv00l committed Sep 11, 2023
1 parent d1545d4 commit ce82322
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 44 deletions.
74 changes: 37 additions & 37 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@
"build": "tsc",
"prepare": "npm run build",
"start": "tsc --watch",
"lint": "tsc && rome ci src",
"lint": "tsc && npm run lint:rome",
"lint:rome": "rome ci src",
"lint:fix": "rome format --write src && rome check --apply src",
"lint:fix:suggested": "rome check --apply-suggested src"
"lint:fix:unsafe": "rome check --apply-unsafe src"
},
"devDependencies": {
"@types/node": "^18.11.10",
"rome": "^10.0.1",
"typescript": "^4.9.3"
"@types/node": "^20.6.0",
"rome": "^12.1.3",
"typescript": "^5.2.2"
}
}
20 changes: 18 additions & 2 deletions rome.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,25 @@
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"all": true,
"correctness": {
"all": true,
"noUnusedVariables": "warn"
},
"style": {
"noImplicitBoolean": "off"
"all": true,
"noImplicitBoolean": "off",
"useEnumInitializers": "off",
"noNonNullAssertion": "off"
},
"suspicious": {
"all": true,
"noExplicitAny": "off"
},
"nursery": {
"all": true,
"useExhaustiveDependencies": "off",
"noForEach": "off"
}
}
}
Expand Down
6 changes: 6 additions & 0 deletions src/types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,15 @@ export interface DatalogEntry {
export interface Config {
[key: string]: any;
megaTune: {
// rome-ignore lint/suspicious/noRedeclare: <explanation>
[key: string]: any;
signature: string;
MTversion: number;
queryCommand: string;
versionInfo: string;
};
tunerStudio: {
// rome-ignore lint/suspicious/noRedeclare: <explanation>
[key: string]: any;
iniSpecVersion: number;
};
Expand All @@ -210,16 +212,20 @@ export interface Config {
menus: Menus;
help: Help;
dialogs: {
// rome-ignore lint/suspicious/noRedeclare: <explanation>
[name: string]: Dialog;
};
curves: {
// rome-ignore lint/suspicious/noRedeclare: <explanation>
[name: string]: Curve;
};
tables: {
// rome-ignore lint/suspicious/noRedeclare: <explanation>
[name: string]: Table;
};
outputChannels: OutputChannels;
datalog: {
// rome-ignore lint/suspicious/noRedeclare: <explanation>
[name: string]: DatalogEntry;
};
}

0 comments on commit ce82322

Please sign in to comment.