Add extension to .eslintrc (#1152)

This commit is contained in:
Manoel 2018-10-09 15:30:29 -03:00 committed by Michael Rawlings
parent ac7aa93f32
commit 76f8b39f0c
2 changed files with 11 additions and 14 deletions

View File

@ -1,14 +0,0 @@
{
"extends": [
"eslint:recommended",
"prettier"
],
"env": {
"node": true,
"es6": true
},
"globals": {
"document": true,
"ShadowRoot": true
}
}

11
.eslintrc.json Normal file
View File

@ -0,0 +1,11 @@
{
"extends": ["eslint:recommended", "prettier"],
"env": {
"node": true,
"es6": true
},
"globals": {
"document": true,
"ShadowRoot": true
}
}