Created
January 12, 2021 17:10
-
-
Save helderferrari2/f8751ff56d0c2de5b732e24febcbec43 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, | |
es2021: true, | |
}, | |
extends: ["airbnb", "prettier", "prettier/react"], | |
globals: { | |
Atomics: "readonly", | |
SharedArrayBuffer: "readonly", | |
}, | |
parser: "babel-eslint", | |
parserOptions: { | |
ecmaFeatures: { | |
jsx: true, | |
}, | |
ecmaVersion: 12, | |
sourceType: "module", | |
}, | |
plugins: ["react", "prettier"], | |
rules: { | |
"prettier/prettier": "error", | |
"react/jsx-filename-extension": ["error", { extensions: [".js", ".jsx"] }], | |
"import/prefer-default-export": "off", | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment