qryn/.eslintrc.json
2021-11-10 12:10:36 +02:00

21 lines
357 B
JSON

{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"jest/globals": true
},
"extends": [
"standard"
],
"parserOptions": {
"ecmaVersion": 2021
},
"plugins": ["jest"],
"rules": {
"no-template-curly-in-string": "off",
"no-useless-escape": "off"
}
}