mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-12 02:00:06 -06:00
33 lines
840 B
JSON
33 lines
840 B
JSON
{
|
|
"plugins": [
|
|
"@cypress/dev"
|
|
],
|
|
"extends": [
|
|
"plugin:@cypress/dev/general",
|
|
"plugin:@cypress/dev/tests"
|
|
],
|
|
"rules": {
|
|
"prefer-spread": "off",
|
|
"prefer-rest-params": "off",
|
|
"no-useless-constructor": "off",
|
|
"no-restricted-properties": [
|
|
"error",
|
|
{
|
|
"object": "process",
|
|
"property": "geteuid",
|
|
"message": "process.geteuid() will throw on Windows. Do not use it unless you catch any potential errors."
|
|
},
|
|
{
|
|
"object": "os",
|
|
"property": "userInfo",
|
|
"message": "os.userInfo() will throw when there is not an `/etc/passwd` entry for the current user (like when running with --user 12345 in Docker). Do not use it unless you catch any potential errors."
|
|
}
|
|
]
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "16.8"
|
|
}
|
|
}
|
|
}
|