mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-13 16:45:12 +01:00
25 lines
449 B
Plaintext
25 lines
449 B
Plaintext
{
|
|
"plugins": [
|
|
"react"
|
|
],
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true,
|
|
"modules": true
|
|
}
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
"rules": {
|
|
"quotes": [ "error", "single" ],
|
|
"semi": [ "error", "never" ]
|
|
}
|
|
}
|