Skip to content

Instantly share code, notes, and snippets.

@jdunkerley
Created April 12, 2020 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdunkerley/317a1955561fee1e261977155bf5f5ba to your computer and use it in GitHub Desktop.
Save jdunkerley/317a1955561fee1e261977155bf5f5ba to your computer and use it in GitHub Desktop.
module.exports = {
env: {
browser: true,
es6: true,
"jest/globals": true
},
extends: [
'plugin:react/recommended',
'standard'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 2018,
sourceType: 'module'
},
plugins: [
'react',
'@typescript-eslint',
'jest'
],
rules: {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment