mirror of
https://github.com/chaoticbackup/chaoticbackup.github.io.git
synced 2026-04-25 15:58:11 -05:00
28 lines
683 B
JSON
28 lines
683 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",
|
|
"object-curly-spacing": "off",
|
|
"object-curly-newline": "off",
|
|
"no-unused-vars": "off",
|
|
"linebreak-style": "off"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"experimentalObjectRestSpread": true
|
|
}
|
|
},
|
|
"plugins": [
|
|
"react"
|
|
]
|
|
}
|