ice-frontend-react-mobx
Version:
ICE Frontend REACT+MobX
40 lines (39 loc) • 959 B
Plain Text
{
"plugins": [
"react"
],
"extends": ["standard", "plugin:react/recommended"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"forOf": true,
"generators": false,
"modules": true,
"objectLiteralComputedProperties": true,
"objectLiteralDuplicateProperties": false,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"spread": true,
"superInFunctions": true,
"templateStrings": true,
"jsx": true
}
},
"env": {
"browser": true,
"jest": true,
"node": true
},
"rules": {
"react/prop-types": 0,
"semi": ["warn", "always"],
"jsx-quotes": ["warn", "prefer-single"],
"no-unused-vars": ["error", { "varsIgnorePattern": "styles" }],
"import/first": 0
}
}