You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.0 KiB
JSON

{
"plugins": [
"cypress",
"chai-friendly"
],
"env": {
"browser": true,
"cypress/globals": true
},
"extends": "airbnb",
"rules": {
"no-param-reassign": "off",
"prefer-destructuring": "off",
"no-use-before-define": [ 2, { "functions": false } ],
"object-shorthand": [
"error",
"never"
],
"comma-dangle": [
"error",
"never"
],
"no-unused-expressions": 0,
"func-names": 0,
"chai-friendly/no-unused-expressions": 2,
"indent": [
"error",
4
],
"linebreak-style": 0,
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
}
}