Skip to content

Commit

Permalink
Switch from ESLint to Rome (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
karniv00l authored Dec 1, 2022
1 parent 4723c17 commit 4000cf7
Show file tree
Hide file tree
Showing 11 changed files with 439 additions and 9,706 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

50 changes: 0 additions & 50 deletions .eslintrc.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

.eslintcache

# # temp test data
# /test/data/tmp/*
# !/test/data/tmp/.keep
5 changes: 3 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
// for the documentation about the extensions.json format
"recommendations": [
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint",
"davidanson.vscode-markdownlint"
"davidanson.vscode-markdownlint",
"streetsidesoftware.code-spell-checker",
"rome.rome"
]
}
20 changes: 15 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"cSpell.words": [
"hypertuner",
"rusefi"
]
"typescript.tsdk": "node_modules/typescript/lib",
"cSpell.words": [
"hypertuner",
"rusefi"
],
"editor.formatOnSave": true,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "rome.rome"
},
"[javascript]": {
"editor.defaultFormatter": "rome.rome"
}
}
Loading

0 comments on commit 4000cf7

Please sign in to comment.