mirror of
https://github.com/kremalicious/blowfish.git
synced 2024-11-14 17:15:12 +01:00
33 lines
536 B
Plaintext
33 lines
536 B
Plaintext
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"prettier",
|
|
"prettier/react"
|
|
],
|
|
"parser": "babel-eslint",
|
|
"plugins": ["react"],
|
|
"rules": {
|
|
"quotes": ["error", "single"],
|
|
"semi": ["error", "never"]
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"node": true,
|
|
"jest": true
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
}
|