poll.horse/frontend/.eslintrc.json
Wolvan c00ea29b4f Implement Form Expansion
If more than 3 options are written down, additional inputs will load in
to allow more options. The maximum cap of options currently is set to
255 but can be configured in Config.ts.
Likewise, the input length can also be controlled from there.
2022-01-01 14:36:25 +01:00

12 lines
225 B
JSON

{
"env": {
"browser": true,
"commonjs": false,
"es6": true,
"node": false
},
"globals": {
"MAX_POLL_OPTIONS": "readonly",
"MAX_CHARACTER_LENGTH": "readonly"
}
}