chore(eslint): add extension to .eslintrc file (#15020)

.eslintrc file without extension is deprecated.
This commit is contained in:
Manoel
2018-10-08 16:21:34 -03:00
committed by Charles Kerr
parent 9177dbb584
commit 5416051e36

12
.eslintrc.json Normal file
View File

@@ -0,0 +1,12 @@
{
"extends": "standard",
"env": {
"browser": true
},
"rules": {
"no-var": "error",
"prefer-const": ["error", {
"destructuring": "all"
}]
}
}