Skip to content

Commit 6e24603

Browse files
committed
Project updates
1 parent 8262f7e commit 6e24603

File tree

8 files changed

+1157
-272
lines changed

8 files changed

+1157
-272
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
.idea
22
/node_modules
3+
.DS_Store
4+
doc
5+

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,7 @@ If you'd like the font [Inter](https://rsms.me/inter) as well (recommended), add
4545

4646
👤 **Joël Lesenne**
4747

48-
* Website : [https://joellesenne.dev](https://joellesenne.dev)
49-
* Mastodon : [@joellesenne](https://mastodon.social/@joellesenne)
50-
* Bluesky : [@joellesenne.bsky.social](https://bsky.app/profile/joellesenne.bsky.social)
51-
* Github : [@joellesenne](https://github.com/joellesenne)
52-
* Codepen : [@joellesenne](https://codepen.io/joellesenne)
53-
* LinkedIn : [@joellesenne](https://linkedin.com/in/joellesenne)
48+
5449

5550
## 🤝 Contributing
5651

eslint.config.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Import necessary modules
2+
import globals from "globals";
3+
import pluginJs from "@eslint/js";
4+
5+
/**
6+
* ESLint configuration for JavaScript files.
7+
* @type {import('eslint').Linter.Config[]}
8+
*/
9+
export default [
10+
// Configuration for JavaScript files
11+
{
12+
files: ["**/*.js"],
13+
languageOptions: {
14+
sourceType: "module",
15+
},
16+
},
17+
// Configuration for browser globals
18+
{
19+
languageOptions: {
20+
globals: globals.browser,
21+
},
22+
},
23+
// Recommended configuration from @eslint/js plugin
24+
pluginJs.configs.recommended,
25+
];
1.2 MB
Loading

0 commit comments

Comments
 (0)