Created
July 11, 2020 09:55
-
-
Save rarmatei/d454961c7dcba985297a7a1e45d54aa8 to your computer and use it in GitHub Desktop.
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 = { | |
env: { | |
browser: true, | |
es2020: true, | |
node: true, | |
}, | |
extends: "eslint:recommended", | |
parserOptions: { | |
ecmaVersion: 11, | |
sourceType: "module", | |
}, | |
rules: { | |
semi: ["warn", "always"], | |
quotes: ["warn", "double"], | |
eqeqeq: ["warn", "always"], | |
"no-unused-vars": ["warn"], | |
"no-redeclare": ["warn"], | |
"no-undef": ["warn"], | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment