fix: make test-lint script ignore xo-web

Too many errors in this legacy package.
This commit is contained in:
Julien Fontanet
2022-11-24 15:57:56 +01:00
parent 37aea1888d
commit ca4a82ec38

View File

@@ -92,7 +92,7 @@
"prettify": "prettier --ignore-path .gitignore --write '**/*.{cjs,js,jsx,md,mjs,ts,tsx}'",
"test": "npm run test-lint && npm run test-unit",
"test-integration": "jest \".integ\\.spec\\.js$\"",
"test-lint": "eslint --ignore-path .gitignore .",
"test-lint": "eslint --ignore-path .gitignore --ignore-pattern packages/xo-web .",
"test-unit": "jest \"^(?!.*\\.integ\\.spec\\.js$)\" && scripts/run-script.js test",
"travis-tests": "scripts/travis-tests.js"
},