mirror of
https://github.com/CryptKeeperZK/snarkjs.git
synced 2026-01-09 15:28:04 -05:00
34 lines
626 B
JavaScript
34 lines
626 B
JavaScript
module.exports = {
|
|
"globals": {
|
|
"globalThis": false, // means it is not writeable
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"node": true,
|
|
"mocha": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2022,
|
|
"sourceType": "module"
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"double"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
]
|
|
}
|
|
};
|