2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-21 20:40:34 +03:00
Files
vue-meta/.eslintrc
T
2021-02-01 00:08:35 +01:00

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"
}
}
]
}