mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-22 06:29:29 +01:00
22 lines
360 B
JavaScript
22 lines
360 B
JavaScript
|
|
module.exports = {
|
||
|
|
env: {
|
||
|
|
browser: true,
|
||
|
|
es2021: true,
|
||
|
|
node: true,
|
||
|
|
"jest/globals": true,
|
||
|
|
},
|
||
|
|
extends: [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:jest/recommended",
|
||
|
|
"plugin:jest/style",
|
||
|
|
],
|
||
|
|
parserOptions: {
|
||
|
|
ecmaVersion: "latest",
|
||
|
|
sourceType: "module",
|
||
|
|
},
|
||
|
|
plugins: ["jest"],
|
||
|
|
rules: {
|
||
|
|
"jest/no-mocks-import": 0,
|
||
|
|
},
|
||
|
|
};
|