combination-react-app
Version:
Combine some small apps into a big app for react app
40 lines (39 loc) • 1.05 kB
Plain Text
{
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"consistent-return": [0],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"global-require": [1],
"import/prefer-default-export": [0],
"react/no-multi-comp": [0],
"react/prop-types": [0],
"react/prefer-stateless-function": [0],
"import/no-extraneous-dependencies": [0],
"jsx-a11y/no-static-element-interactions": [0],
"no-nested-ternary": [0],
"import/extensions": [0],
"no-bitwise": [0],
"import/no-unresolved": [0],
"require-yield": [1],
"object-shorthand": [0],
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"no-unused-expressions": [0],
"arrow-parens": ["error", "as-needed"],
"no-continue": [0],
"no-param-reassign": [0]
},
"parserOptions": {
"ecmaVersion": 7,
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"experimentalDecorators": true
}
},
"env": {
"browser": true,
},
"globals": {
"_": true,
},
}