qryn/.eslintrc.json

21 lines
357 B
JSON
Raw Permalink Normal View History

2021-11-09 16:09:57 +02:00
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"jest/globals": true
},
"extends": [
"standard"
],
2021-11-10 09:46:34 +02:00
2021-11-09 16:09:57 +02:00
"parserOptions": {
"ecmaVersion": 2021
},
"plugins": ["jest"],
"rules": {
2021-11-10 12:10:36 +02:00
"no-template-curly-in-string": "off",
"no-useless-escape": "off"
2021-11-09 16:09:57 +02:00
}
}