Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also 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: hyper-tuner/ini
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.7.5
Choose a base ref
...
head repository: hyper-tuner/ini
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 30 files changed
  • 1 contributor

Commits on Dec 6, 2022

  1. Update Rome

    karniv00l committed Dec 6, 2022
    Copy the full SHA
    ff414b8 View commit details

Commits on Dec 10, 2022

  1. Bump dependencies

    karniv00l committed Dec 10, 2022
    Copy the full SHA
    952db1d View commit details

Commits on Dec 11, 2022

  1. Copy the full SHA
    529b55a View commit details
  2. 0.7.6

    karniv00l committed Dec 11, 2022
    Copy the full SHA
    117227d View commit details

Commits on Mar 2, 2023

  1. Update dependencies

    karniv00l committed Mar 2, 2023
    Copy the full SHA
    9ac8864 View commit details
  2. Handle global dialogs

    karniv00l committed Mar 2, 2023
    Copy the full SHA
    cc4e710 View commit details

Commits on Sep 11, 2023

  1. Update dependencies

    karniv00l committed Sep 11, 2023
    Copy the full SHA
    0a13120 View commit details
  2. Copy the full SHA
    23e7154 View commit details
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"cSpell.words": [
"FOME",
"hypertuner",
"parsimmon",
"rusefi"
],
"editor.formatOnSave": true,
83 changes: 41 additions & 42 deletions package-lock.json

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

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hyper-tuner/ini",
"description": "HyperTuner INI parser",
"version": "0.7.5",
"version": "0.7.6",
"license": "MIT",
"repository": {
"type": "git",
@@ -21,19 +21,20 @@
"start": "tsc --watch",
"generate": "npm run build && node test/test.js generate",
"test": "npm run build && node test/test.js",
"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/js-yaml": "^4.0.5",
"@types/node": "^18.11.10",
"@types/node": "^20.6.0",
"@types/parsimmon": "^1.10.6",
"rome": "^10.0.1",
"typescript": "^4.9.3"
"rome": "^12.1.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@hyper-tuner/types": "^0.4.2",
"@hyper-tuner/types": "git+https://github.com/hyper-tuner/types.git",
"js-yaml": "^4.1.0",
"parsimmon": "^1.18.1"
}
20 changes: 18 additions & 2 deletions rome.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
3 changes: 2 additions & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
@@ -64,10 +64,11 @@ switch (command) {
break;
}

default:
default: {
console.info(
`❗️ Unknown command: ${command}, please use one of: [${Object.values(Commands).join(', ')}]`,
);
process.exit(1);
break;
}
}
Loading