mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 14:59:14 +01:00
7b8b07b05a
adds .eslintcache to gitignore
19 lines
461 B
Plaintext
19 lines
461 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],
|
|
/* to allow importing 'gatsby-helpers' */
|
|
"import/no-extraneous-dependencies": [0],
|
|
"import/no-unresolved": [0],
|
|
"import/extensions": [0]
|
|
}
|
|
}
|