editor.js/test/cypress/.eslintrc
Peter Savchenko b39996616c
chore(perf): initialisation and rendering performance optimisations (#2430)
* renderer batching

* initialization and rendering performance optimized

* insertMany api method added

* Update index.html

* rm old method

* upd changelog

* upd paragraph

* paste tests fixed

* api blocks tests fixed

* backspace event tests fixed

* async issues in tests fixed

* eslint

* stub block added, tests added

* eslint

* eslint

* add test for insertMany()

* Update package.json
2023-08-08 22:17:09 +03:00

22 lines
437 B
Plaintext

{
"plugins": [
"cypress",
"chai-friendly"
],
"env": {
"cypress/globals": true
},
"extends": [
"plugin:cypress/recommended",
"plugin:chai-friendly/recommended"
],
"rules": {
"cypress/require-data-selectors": 2,
"cypress/no-unnecessary-waiting": 0,
"@typescript-eslint/no-magic-numbers": 0
},
"globals": {
"EditorJS": true
}
}