mirror of
https://github.com/atisawd/boxicons.git
synced 2024-11-13 19:04:52 +01:00
25 lines
587 B
JSON
25 lines
587 B
JSON
|
{
|
||
|
"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"
|
||
|
]
|
||
|
}
|