Alejandro Lembke Barrientos
ba4ad68a53
Se prepara para produccion. Se sube a version 1.1.5 Se sube a GitHub 1.1.5
21 lines
385 B
Plaintext
21 lines
385 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"extends": "react-app",
|
|
"env": {
|
|
"es6": true
|
|
},
|
|
"plugins": [
|
|
"react"
|
|
],
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
// don't force es6 functions to include space before paren
|
|
"space-before-function-paren": 0,
|
|
|
|
// allow specifying true explicitly for boolean props
|
|
"react/jsx-boolean-value": 0
|
|
}
|
|
}
|