1
0
mirror of https://github.com/kremalicious/blowfish.git synced 2024-06-15 16:53:09 +02:00
blowfish/.eslintrc

28 lines
424 B
Plaintext

{
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier",
"prettier/react"
],
"plugins": ["react"],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"es6": true,
"node": true,
"jest": true
},
"settings": {
"react": {
"version": "detect"
}
}
}