scinote-web/.eslintrc.json
2017-07-13 14:30:12 +02:00

48 lines
716 B
JSON

{
"env": {
"browser": true,
"jquery": true,
"es6": true,
"node": true
},
"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
}
}