Skip to content

Commit c71bd78

Browse files
Fix lint issues
1 parent f19f9ac commit c71bd78

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "src/edge.js",
66
"type": "module",
77
"scripts": {
8-
"lint:js": "eslint .",
8+
"lint:js": "eslint test src",
99
"lint": "npm run lint:js",
1010
"dev": "wrangler dev -e dev src/edge.js",
1111
"deploy:ci": "node prepare-deploy.js && wrangler deploy -e ci -c wrangler-versioned.toml",

test/cross-validation.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
* governing permissions and limitations under the License.
1111
*/
1212

13+
/* eslint-disable max-len */
14+
1315
/**
1416
* Cross-Validation Tests
1517
*

test/edge.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
* governing permissions and limitations under the License.
1111
*/
1212
/* eslint-disable no-unused-vars */
13+
/* eslint-disable object-curly-newline */
14+
1315
import assert from 'node:assert';
1416

1517
import defaultEdge, { DocRoom, handleApiRequest, handleErrors, handleConvert } from '../src/edge.js';

0 commit comments

Comments
 (0)