mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-01-13 23:39:32 +01:00
a1cee07124
adds react/forbid-prop-types to be ignored in eslintrc could be added in an additional refactoring round right now, I'm not sure what to choose as proptypes...
20 lines
501 B
Plaintext
20 lines
501 B
Plaintext
{
|
|
"extends": "airbnb",
|
|
"plugins": [
|
|
"react",
|
|
"jsx-a11y",
|
|
"import"
|
|
],
|
|
"rules": {
|
|
"global-require": [0],
|
|
"react/jsx-filename-extension": [0],
|
|
"react/prefer-es6-class": [0],
|
|
"react/prefer-stateless-function": [0],
|
|
"react/forbid-prop-types": [0],
|
|
/* to allow importing 'gatsby-helpers' */
|
|
"import/no-extraneous-dependencies": [0],
|
|
"import/no-unresolved": [0],
|
|
"import/extensions": [0]
|
|
}
|
|
}
|