28a0f50927
Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) from 16.6.2 to 17.13.1. - [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases) - [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md) - [Commits](https://github.com/eslint-community/eslint-plugin-n/compare/16.6.2...v17.13.1) --- updated-dependencies: - dependency-name: eslint-plugin-n dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github | ||
LICENSES | ||
parts | ||
tests | ||
.git-blame-ignore-revs | ||
.gitignore | ||
.npmignore | ||
AUTHORS.md | ||
CHANGELOG.md | ||
LICENSE | ||
README.md | ||
REUSE.toml | ||
index.js | ||
package-lock.json | ||
package.json | ||
typescript.js | ||
vue3.js |
README.md
@nextcloud/eslint-config
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!
Installation
npm install @nextcloud/eslint-config --save-dev
Usage
Add a file .eslintrc.js
in the root directory of your app repository with the following content:
module.exports = {
extends: [
'@nextcloud',
],
}
Usage with Typescript projects
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',
],
}
Usage with Vue 3 projects
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',
],
}
Release new version
- Update CHANGELOG.md file with the latest changes
- Bump the package version with
npm version
- Push version bump commit
- Create a new release with proper changelog https://github.com/nextcloud-libraries/eslint-config/releases/new