appcenter
Version:
Node module that contains common functionality needed to appcenter-* modules
31 lines • 803 B
Plain Text
{
"parser": "babel-eslint",
"env": {
"es6": true,
"jest": true
},
"plugins": [
"react"
],
"extends": "airbnb",
"rules": {
"comma-dangle": 0,
"react/prop-types": 0,
"no-use-before-define": 0,
"radix": 0,
"no-param-reassign": 0,
"react/jsx-filename-extension": 0,
"no-mixed-operators": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"no-plusplus": 0,
"react/prefer-stateless-function": 0,
"class-methods-use-this": 0,
"max-len": 0,
"jsx-a11y/href-no-hash": 0,
"indent": 0,
"import/no-unresolved": 0,
"no-console": 0,
"no-multi-spaces": [2, { "ignoreEOLComments": true }]
}
}