bigint-mod-arith/.eslintrc.json

34 lines
607 B
JSON
Raw Normal View History

2019-03-17 08:40:35 +00:00
{
"env": {
"node": true,
"browser": true,
2019-04-06 08:08:31 +00:00
"mocha": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
2019-03-17 08:40:35 +00:00
},
"extends": "eslint:recommended",
"rules": {
2019-04-06 08:08:31 +00:00
"no-console": 0,
2019-03-17 08:40:35 +00:00
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
},
"globals": {
"BigInt": "readonly"
2019-03-17 08:40:35 +00:00
}
}