readline-sync/.eslintrc.json

13 lines
531 B
JSON
Raw Permalink Normal View History

2016-04-27 15:02:12 +02:00
{
2017-02-01 15:19:22 +01:00
"root": true,
2021-06-03 14:49:13 +02:00
"extends": "../../_common/files/eslintrc.json",
2016-04-27 15:02:12 +02:00
"env": {"node": true},
"rules": {
2019-07-27 14:52:40 +02:00
"no-var": "off",
"prefer-arrow-callback": "off",
"object-shorthand": "off",
2016-04-27 15:02:12 +02:00
"no-underscore-dangle": [2, {"allow": ["_DBG_useExt", "_DBG_checkOptions", "_DBG_checkMethod", "_readlineSync", "_execFileSync", "_handle", "_flattenArray", "_getPhContent", "_DBG_set_useExt", "_DBG_set_checkOptions", "_DBG_set_checkMethod", "_DBG_clearHistory", "_questionNum", "_keyInYN", "_setOption"]}],
"camelcase": 0
}
}