Skip to content

Commit

Permalink
chore(deps): further upgrade project tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaudcolas committed Aug 13, 2024
1 parent 31cb697 commit 9d0a7d6
Show file tree
Hide file tree
Showing 30 changed files with 7,217 additions and 9,250 deletions.
6 changes: 0 additions & 6 deletions .eslintignore

This file was deleted.

18 changes: 0 additions & 18 deletions .eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
21
22
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// See https://github.com/marionebl/commitlint.
module.exports = {
export default {
extends: ["@commitlint/config-conventional"],
}
29 changes: 29 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import globals from "globals"
import eslint from "@eslint/js"
import tseslint from "typescript-eslint"

export default tseslint.config(
{
ignores: [
"node_modules",
"coverage",
"docs",
"dist",
"build",
"es",
"**/*.min.js",
"**/*.bundle.js",
],
},
eslint.configs.recommended,
...tseslint.configs.recommended,
{
languageOptions: {
ecmaVersion: 2020,
globals: {
...globals.browser,
...globals.node,
},
},
},
)
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
Loading

0 comments on commit 9d0a7d6

Please sign in to comment.