45 строки
647 B
JSON
45 строки
647 B
JSON
{
|
|
"globals": {
|
|
"EMOJIS": true,
|
|
"PRODUCTION": true,
|
|
"SCOPE_VERSION": true,
|
|
"TRANSLATIONS": true,
|
|
"oc_userconfig": true,
|
|
"appName": true,
|
|
"appVersion": true
|
|
},
|
|
"extends": [
|
|
"@nextcloud/eslint-config/typescript"
|
|
],
|
|
"plugins": [
|
|
"cypress"
|
|
],
|
|
"parserOptions": {
|
|
"babelOptions": {
|
|
"plugins": [
|
|
"@babel/plugin-syntax-import-assertions"
|
|
]
|
|
}
|
|
},
|
|
"rules": {
|
|
"@nextcloud/no-deprecations": [
|
|
"error",
|
|
{
|
|
"parseAppInfo": false
|
|
}
|
|
],
|
|
"@nextcloud/no-removed-apis": [
|
|
"error",
|
|
{
|
|
"parseAppInfo": false
|
|
}
|
|
],
|
|
"import/no-unresolved": [
|
|
"error",
|
|
{
|
|
"ignore": ["\\?raw$"]
|
|
}
|
|
]
|
|
}
|
|
}
|