mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-03-09 17:09:05 -05:00
chore(eslint): remove 'name' from globals
This commit is contained in:
@@ -8,6 +8,9 @@ module.exports = {
|
||||
env: {
|
||||
"jest": true
|
||||
},
|
||||
globals: {
|
||||
name: 'off'
|
||||
},
|
||||
rules: {
|
||||
"indent": ["error", 2, {
|
||||
"MemberExpression": "off"
|
||||
|
||||
@@ -7,6 +7,7 @@ module.exports = {
|
||||
globals: {
|
||||
ClientAddonApi: false,
|
||||
mapSharedData: false,
|
||||
Vue: false
|
||||
Vue: false,
|
||||
name: 'off'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,6 +17,7 @@ module.exports = {
|
||||
globals: {
|
||||
ClientAddonApi: false,
|
||||
mapSharedData: false,
|
||||
Vue: false
|
||||
Vue: false,
|
||||
name: 'off'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,8 @@ module.exports = {
|
||||
],
|
||||
|
||||
globals: {
|
||||
ClientAddonApi: false
|
||||
ClientAddonApi: false,
|
||||
name: 'off'
|
||||
},
|
||||
|
||||
plugins: [
|
||||
|
||||
Reference in New Issue
Block a user