27
0
Fork 1
forked from mirror/Mainroad

Update ESLint rules

* Disable `no-unused-vars`, `no-shadow-restricted-names`
This commit is contained in:
vimux 2018-10-28 11:06:49 -04:00
parent 08ff4c67f9
commit f9c1a95d55
No known key found for this signature in database
GPG key ID: 5A34FDC4EE832E34

View file

@ -2,6 +2,8 @@
"extends": "airbnb-base/legacy",
"rules": {
"indent": [2, "tab"],
"no-tabs": 0
"no-tabs": 0,
"no-unused-vars": 0,
"no-shadow-restricted-names": 0
}
}