mirror of
https://github.com/wassname/talk.git
synced 2026-07-13 17:45:56 +08:00
24 lines
467 B
JSON
24 lines
467 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"mocha": true
|
|
},
|
|
"extends": "../.eslintrc.json",
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"experimentalObjectRestSpread": true,
|
|
"jsx": true
|
|
},
|
|
"sourceType": "module"
|
|
},
|
|
"parser": "babel-eslint",
|
|
"plugins": [
|
|
"react"
|
|
],
|
|
"rules": {
|
|
"react/jsx-uses-react": "error",
|
|
"react/jsx-uses-vars": "error"
|
|
}
|
|
}
|