feat(basic): add rules to prevent .only in tests (#127)

This commit is contained in:
KylinDC
2022-11-01 02:28:00 +08:00
committed by GitHub
parent 501ff74200
commit da59484756
3 changed files with 10 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ module.exports = {
'html',
'unicorn',
'antfu',
'no-only-tests',
],
settings: {
'import/resolver': {
@@ -155,6 +156,7 @@ module.exports = {
files: ['*.test.ts', '*.test.js', '*.spec.ts', '*.spec.js'],
rules: {
'no-unused-expressions': 'off',
'no-only-tests/no-only-tests': 'error',
},
},
{

View File

@@ -26,6 +26,7 @@
"eslint-plugin-jsonc": "^2.4.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-yml": "^1.1.0",