Skip to content

Commit

Permalink
fix(lockfile): run pnpm audit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazerbeak12345 committed Jul 22, 2024
1 parent 01a111a commit 481916d
Show file tree
Hide file tree
Showing 21 changed files with 7,131 additions and 10,147 deletions.
13 changes: 0 additions & 13 deletions .eslintrc

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ node_modules
# Compile targets
dist/
docs/
.tsimp/
build/

# Compiler caches
.parcel-cache
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Start with this html:
<!doctype html>
<html>
<head>
<script src="https://unpkg.com/pixelmanipulator@^5.5.5"></script>
<script src="https://unpkg.com/pixelmanipulator@^5.5.7"></script>
</head>
<body>
<canvas id="myCanvas"></canvas>
Expand Down
19 changes: 19 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import love from 'eslint-config-love'
import tsdoc from 'eslint-plugin-tsdoc'
export default [
{
...love,
name:"pixelmanipulator " + (love.name??""),
files: ["src/**/*.ts","tests/**/*.ts"],
plugins: {
...love.plugins,
tsdoc,
},
rules: {
...love.rules,
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/explicit-module-boundary-types": "error",
"tsdoc/syntax": "warn",
}
}
]
Loading

0 comments on commit 481916d

Please sign in to comment.