Handling questions with select element

This commit is contained in:
mrfry 2021-03-14 12:08:27 +01:00
parent 3f641f07cc
commit a437f8f98d
2 changed files with 326 additions and 411 deletions

View file

@ -1,20 +1,22 @@
module.exports = {
env: {
browser: true,
es6: true,
node: true,
jest: true,
},
extends: ["eslint:recommended"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
rules: {
"no-extra-semi": "off",
"no-undef": ["warn"],
eqeqeq: ["warn", "smart"],
"no-unused-vars": "off",
"no-prototype-builtins": "off",
},
env: {
browser: true,
es6: true,
node: true,
jest: true,
},
extends: ['eslint:recommended'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
rules: {
'no-extra-semi': 'off',
'no-undef': ['error'],
eqeqeq: ['warn', 'smart'],
'no-unused-vars': 'warn',
'no-prototype-builtins': 'off',
'object-shorthand': ['warn', 'never'],
'prefer-const': 'warn',
},
}