Files
cypress/cli/.eslintrc.json
2022-06-15 16:22:10 +00:00

21 lines
746 B
JSON

{
"extends": "../.eslintrc.js",
"rules": {
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.name='arch']",
"message": "Do not use `arch()` to detect the user's machine architecture. Use util.getRealArch() instead."
},
{
"selector": "CallExpression[callee.object.name='os'][callee.property.name='arch']",
"message": "Do not use `os.arch()` to detect the user's machine architecture. Use util.getRealArch() instead."
},
{
"selector": "MemberExpression[object.name='process'][property.name='arch']",
"message": "Do not use `process.arch` to detect the user's machine architecture. Use util.getRealArch() instead."
}
]
}
}