Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into commit-checkmark
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-Lorenz committed Jun 18, 2024
2 parents 84c02fb + e8b4dee commit a1dfc22
Show file tree
Hide file tree
Showing 9 changed files with 11,053 additions and 12,459 deletions.
29 changes: 29 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
const globals = require("globals");

module.exports = {
env: {
browser: true,
},
globals: globals.browser,
plugins: [
"import",
"@typescript-eslint",
],
rules: {
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
"no-unused-vars": "off"
},
extends: [
"eslint:recommended",
"plugin:import/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
settings: {
"import/resolver": {
"typescript": true,
"node": true,
}
}
};
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
npm run build
npm run test
npm run test
27 changes: 0 additions & 27 deletions eslint.config.js

This file was deleted.

2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,6 @@ <h6>URL</h6>
</div>
</div>
</div>
<script src="/src/app.ts"></script>
<script src="/src/app.ts" type="module"></script>
</body>
</html>
Loading

0 comments on commit a1dfc22

Please sign in to comment.