Skip to content

Instantly share code, notes, and snippets.

@shalvah
Last active October 24, 2021 18:09
Show Gist options
  • Save shalvah/f3de1e811e8d7c20aa29e987dbf57c63 to your computer and use it in GitHub Desktop.
Save shalvah/f3de1e811e8d7c20aa29e987dbf57c63 to your computer and use it in GitHub Desktop.
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