Skip to content

Commit

Permalink
Merge pull request #146 from ator-dev/simplify-project-config
Browse files Browse the repository at this point in the history
Improve typing, make project config more coherent
  • Loading branch information
ator-dev authored Dec 1, 2023
2 parents 55de44f + 557afbb commit b36dcac
Show file tree
Hide file tree
Showing 11 changed files with 431 additions and 881 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// eslint-disable-next-line no-undef
module.exports = {
env: { browser: true },
extends: [ "eslint:recommended", "plugin:@typescript-eslint/recommended" ],
parser: "@typescript-eslint/parser",
plugins: [ "@typescript-eslint" ],
rules: {
"indent": [ "error", "tab" ],
"linebreak-style": [ "error", "unix" ],
"semi": [ "error", "always" ],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": 1,
},
};
34 changes: 0 additions & 34 deletions .eslintrc.json

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
/promo/dist
/pack
/node_modules
/pnpm-lock.yaml
/manifest.json
16 changes: 7 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,12 @@
},
"homepage": "https://github.com/searchmarkers/mark-my-search#readme",
"devDependencies": {
"@types/chrome": "^0.0.204",
"@types/firefox-webext-browser": "^94.0.1",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"inkscape": "^3.1.1",
"jq": "^1.7.2",
"typescript": "^4.9.4",
"winston": "^3.8.2"
"inkscape": "3.1.1",
"@types/firefox-webext-browser": "120.0.0",
"@types/chrome": "0.0.253",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"eslint": "8.54.0",
"typescript": "5.3.2"
}
}
Loading

0 comments on commit b36dcac

Please sign in to comment.