chore(eslint): remove 'name' from globals

This commit is contained in:
Guillaume Chau
2019-04-08 19:44:35 +02:00
parent a575def3f2
commit 1763170d3a
4 changed files with 9 additions and 3 deletions

View File

@@ -8,6 +8,9 @@ module.exports = {
env: {
"jest": true
},
globals: {
name: 'off'
},
rules: {
"indent": ["error", 2, {
"MemberExpression": "off"

View File

@@ -7,6 +7,7 @@ module.exports = {
globals: {
ClientAddonApi: false,
mapSharedData: false,
Vue: false
Vue: false,
name: 'off'
}
}

View File

@@ -17,6 +17,7 @@ module.exports = {
globals: {
ClientAddonApi: false,
mapSharedData: false,
Vue: false
Vue: false,
name: 'off'
}
}

View File

@@ -7,7 +7,8 @@ module.exports = {
],
globals: {
ClientAddonApi: false
ClientAddonApi: false,
name: 'off'
},
plugins: [