mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-06 06:29:45 -06:00
21 lines
746 B
JSON
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."
|
|
}
|
|
]
|
|
}
|
|
}
|