boxicons/.eslintrc.json

25 lines
587 B
JSON
Raw Normal View History

2018-06-15 09:50:17 +02:00
{
"root": true,
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true }],
"no-plusplus": "off",
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["./webpack.config.js"]}],
"react/forbid-prop-types": "off",
"react/jsx-filename-extension": "off",
"react/no-array-index-key": "off"
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"plugins": [
"react"
]
}