mirror of
https://github.com/kremalicious/blowfish.git
synced 2024-10-31 15:45:17 +01:00
28 lines
424 B
Plaintext
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"
|
|
}
|
|
}
|
|
}
|