
Security News
n8n Tops 2025 JavaScript Rising Stars as Workflow Platforms Gain Momentum
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.
@nextcloud/eslint-config
Advanced tools
This is a package containing the unified global eslint config used by all nextcloud apps. It contains the necessary dependencies and peerDependencies so that other apps cannot update if this config does not support it. Please always use dependabot to update your apps, OR pay attention to the peer dependencies error messages!
npm install @nextcloud/eslint-config --save-dev
Add a file .eslintrc.js in the root directory of your app repository with the following content:
module.exports = {
extends: [
'@nextcloud',
],
}
If your projects uses Typescript for vue files, like <script lang="ts"> then use the Typescript config instead:
Add a file .eslintrc.js in the root directory of your app repository with the following content:
module.exports = {
extends: [
'@nextcloud/eslint-config/typescript',
],
}
If your projects uses Vue 3 you have to use the vue3 sub-configuration.
This configuration also includes Typescript support by default.
Add a file .eslintrc.js in the root directory of your app repository with the following content:
module.exports = {
extends: [
'@nextcloud/eslint-config/vue3',
],
}
npm versionFAQs
Eslint shared config for nextcloud vue.js apps
The npm package @nextcloud/eslint-config receives a total of 12,477 weekly downloads. As such, @nextcloud/eslint-config popularity was classified as popular.
We found that @nextcloud/eslint-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 13 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.

Security News
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.