mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-21 20:40:34 +03:00
23 lines
356 B
Plaintext
23 lines
356 B
Plaintext
{
|
|
"extends": [
|
|
"@nuxtjs/eslint-config-typescript"
|
|
],
|
|
"globals": {
|
|
"__DEV__": true,
|
|
"__BROWSER__": false
|
|
},
|
|
"rules": {
|
|
"spaced-comment": ["error", "always", { "exceptions": ["#__PURE__"] }]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"examples/**"
|
|
],
|
|
"rules": {
|
|
"no-console": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|