mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
22 lines
511 B
JavaScript
22 lines
511 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'@nextcloud',
|
|
],
|
|
plugins: [
|
|
"eslint-plugin-risxss"
|
|
],
|
|
"rules": {
|
|
"node/no-extraneous-import": ["error", {
|
|
"allowModules": [
|
|
'@nextcloud/auth',
|
|
'@nextcloud/initial-state'
|
|
],
|
|
"resolvePaths": [],
|
|
"tryExtensions": []
|
|
}],
|
|
|
|
// production only
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'warn',
|
|
'vue/no-unused-components': process.env.NODE_ENV === 'production' ? 'error' : 'warn',
|
|
}
|
|
}
|