scinote-web/.eslintrc.json
2017-08-09 16:14:39 +02:00

45 lines
805 B
JSON

{
"env": {
"browser": true,
"jquery": true,
"es6": true,
"node": true
},
"plugins": ["react", "prettier"],
"extends": ["airbnb", "prettier", "prettier/react"],
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2016,
"ecmaFeatures": {
"impliedStrict": true,
"jsx": true
}
},
"rules": {
"import/no-unresolved": [
"error",
{
"ignore": ["app/javascript/"]
}
],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"spaced-comment": [
"error",
"always",
{
"markers": ["="]
}
],
"lines-around-comment": [
"warn",
{
"beforeLineComment": false
}
]
},
"globals": {
"_": true
}
}