This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Qualifications array: | |
const myQualifications = ["bike", "driver's license"]; | |
/** | |
* All companies array in the sample, with their requirements, plus one extra company for complex conditions demo | |
* | |
* requirements are either: | |
* - a string, eg: "PayPal account" | |
* - an object with "or" array inside. eg: { or: ["apartment", "flat", "house"] } | |
* - an object with "and" array inside. eg: { and: ["social security number", "work permit"] } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
"root": true, | |
"extends": ["eslint:recommended", "plugin:react/recommended"], | |
"env": { | |
"browser": true, | |
"commonjs": true, | |
"es6": true, | |
}, | |
"parserOptions": { | |
"ecmaFeatures": { |