Skip to content

Instantly share code, notes, and snippets.

@meeglos
Created May 14, 2023 21:50
Show Gist options
  • Save meeglos/e159e90abc4b78dfa61399989f489d9d to your computer and use it in GitHub Desktop.
Save meeglos/e159e90abc4b78dfa61399989f489d9d to your computer and use it in GitHub Desktop.
eslint file config
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'standard',
'eslint-config-prettier',
],
overrides: [],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['react'],
rules: {
'no-unused-vars': 'warn',
'react/prop-types': ['off'],
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment