scinote-web/.eslintrc.json

46 lines
681 B
JSON
Raw Normal View History

{
"env": {
"browser": true,
"jquery": true
},
2017-07-13 20:11:01 +08:00
"plugins": [
"react"
],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 6,
"ecmaFeatures": {
"impliedStrict": true,
"jsx": true
}
},
"rules": {
"spaced-comment": [
"error",
"always",
{
"markers": [
"="
]
}
],
"lines-around-comment": [
"warn",
{
"beforeLineComment": false
}
],
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
]
},
"globals": {
"_": true
}
}