Skip to content

Commit 619ee6d

Browse files
committedSep 26, 2024
Update eslint
1 parent 5a18321 commit 619ee6d

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed
 

‎eslint.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import aether from "eslint-config-aether";
2+
export default [...aether];

‎package.json

+5-10
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@
5555
"./test/**/*"
5656
]
5757
},
58-
"eslintConfig": {
59-
"extends": "aether"
60-
},
6158
"scripts": {
6259
"ava": "ava",
6360
"build": "npm run clean && run-p build:css build:js:min build:dts",
@@ -73,15 +70,14 @@
7370
"hugo": "hugo -s manual --minify",
7471
"lint": "run-p lint:*",
7572
"lint:css": "stylelint --fix manual/assets/css/src",
76-
"lint:js": "eslint --ext .js --fix src demo/src manual/assets/js/src",
73+
"lint:js": "eslint --fix src demo/src manual/assets/js/src",
7774
"postcss": "postcss manual/assets/css/dist/index.css -o manual/assets/css/dist/index.css -c manual",
7875
"prepublishOnly": "npm test",
7976
"prewatch": "run-s clean copy build:css build:js",
8077
"test": "run-s lint build ava doc",
8178
"start": "hugo server -s manual -e development",
8279
"watch": "run-p watch:* start",
8380
"watch:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist -w",
84-
"watch:eslint": "esw -w --ext .js --color src demo/src manual/assets/js/src",
8581
"watch:js": "node esbuild -w"
8682
},
8783
"peerDependencies": {
@@ -90,8 +86,8 @@
9086
"devDependencies": {
9187
"@tweakpane/core": "2.x.x",
9288
"@types/three": "0.x.x",
93-
"@typescript-eslint/eslint-plugin": "7.x.x",
94-
"@typescript-eslint/parser": "7.x.x",
89+
"@typescript-eslint/eslint-plugin": "8.x.x",
90+
"@typescript-eslint/parser": "8.x.x",
9591
"autoprefixer": "10.x.x",
9692
"ava": "6.x.x",
9793
"cpy-cli": "5.x.x",
@@ -103,9 +99,8 @@
10399
"esdoc": "1.x.x",
104100
"esdoc-importpath-plugin": "1.x.x",
105101
"esdoc-standard-plugin": "1.x.x",
106-
"eslint": "8.x.x",
107-
"eslint-config-aether": "1.x.x",
108-
"eslint-watch": "8.x.x",
102+
"eslint": "9.x.x",
103+
"eslint-config-aether": "2.x.x",
109104
"gzipper": "8.x.x",
110105
"hugo-bin": "0.x.x",
111106
"npm-run-all": "4.x.x",

‎src/textures/smaa/areaImageDataURL.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Generated with SMAASearchImageData.generate().toCanvas().toDataURL(), cropped, high dynamic range.
2-
/* eslint-disable max-len */
2+
/* eslint-disable @stylistic/max-len */
33
export default "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAQCAYAAACm53kpAAAAeElEQVRYR+2XSwqAMAxEJ168ePEqwRSKhIIiuHjJqiU0gWE+1CQdApcVAMUAuARaMGCX1MIL/Ow13++9lW2s3mW9MWvsnWc/2fvGygwPAN4E8QzAA4CXAB6AHjG4JTHYI1ey3pcx6FHnEfhLDOIBKAmUBK6/ANUDTlROXAHd9EC1AAAAAElFTkSuQmCC";

0 commit comments

Comments
 (0)
Please sign in to comment.