You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
416 B
23 lines
416 B
{ |
|
"parser": "babel-eslint", |
|
"extends": [ |
|
"standard", |
|
"standard-react" |
|
], |
|
"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 |
|
} |
|
}
|
|
|