Document disabling of rule

This commit is contained in:
Mariusz Nowak 2019-05-29 13:53:16 +02:00
parent e4f1b5707e
commit 7d96e1e0ca
No known key found for this signature in database
GPG Key ID: B1FBDA8A182B03F2

View File

@ -5,10 +5,10 @@ module.exports = {
"rules": {
"func-names": "off",
"global-require": "off", // Interfers with optional and eventual circular references
"react/require-extension": "off", // Forced by airbnb, not applicable (also deprecated)
"strict": ["error", "safe"], // airbnb implies we're transpiling with babel, we're not
// doesn't work in node v4 :(
"react/require-extension": "off",
"import/no-extraneous-dependencies": "off"
},
"parserOptions": {