From 25f0df8fcb3c4d711641ace8a8e01d576cda82e7 Mon Sep 17 00:00:00 2001 From: italo jose Date: Fri, 27 Mar 2026 11:46:03 -0300 Subject: [PATCH] Remove JSHint configuration from `package.json` and update Oxford Formatter settings for single quotes and print width. --- .oxfmtrc.json | 4 ++-- package.json | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.oxfmtrc.json b/.oxfmtrc.json index caca8f3864..e9332329bf 100644 --- a/.oxfmtrc.json +++ b/.oxfmtrc.json @@ -1,7 +1,7 @@ { "semi": true, - "singleQuote": true, - "printWidth": 80, + "singleQuote": false, + "printWidth": 100, "tabWidth": 2, "useTabs": false, "trailingComma": "all", diff --git a/package.json b/package.json index 4bab9b21bc..6d09c20321 100644 --- a/package.json +++ b/package.json @@ -29,8 +29,5 @@ "test:idle-bot": "node --test .github/scripts/__tests__/inactive-issues.test.js", "install:e2e": "cd tools/modern-tests && npm install && npx playwright install --with-deps chromium chromium-headless-shell", "test:e2e": "cd tools/modern-tests && npm test -- " - }, - "jshintConfig": { - "esversion": 11 } }