mirror of
https://github.com/chaoticbackup/chaoticbackup.github.io.git
synced 2026-04-24 23:37:13 -05:00
24 lines
554 B
JSON
24 lines
554 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.babel.js"]}],
|
|
"react/forbid-prop-types": "off",
|
|
"react/jsx-filename-extension": "off"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"experimentalObjectRestSpread": true
|
|
}
|
|
},
|
|
"plugins": [
|
|
"react"
|
|
]
|
|
}
|