Last active
October 24, 2021 18:09
-
-
Save shalvah/f3de1e811e8d7c20aa29e987dbf57c63 to your computer and use it in GitHub Desktop.
This file contains 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 = { | |
"env": { | |
"commonjs": true, | |
"es2021": true | |
}, | |
"extends": "eslint:recommended", | |
"parserOptions": { | |
"ecmaVersion": 13 | |
}, | |
"rules": { | |
"no-unused-vars": ["warn"], | |
"no-await-in-loop": ["warn"], | |
"no-extra-semi": ["warn"], | |
"no-extra-boolean-cast": ["off"], | |
"no-inner-declarations": ["off"], | |
"no-mixed-spaces-and-tabs": ["off"], | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment