Remove unused ESLint disable directives (#22427)

This commit is contained in:
Nick Schonning
2023-01-29 20:11:50 -05:00
committed by GitHub
parent c49213f0ea
commit e6192eab9b
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
"start": "node ./streaming/index.js",
"test": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:jest",
"test:lint": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:lint:sass",
"test:lint:js": "eslint --ext=js . --cache",
"test:lint:js": "eslint --ext=js . --cache --report-unused-disable-directives",
"test:lint:sass": "stylelint \"**/*.{css,scss}\"",
"test:jest": "cross-env NODE_ENV=test jest",
"format": "prettier --write \"**/*.{json,yml}\"",