Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

ckeditor/eslint-config-ckeditor5

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CKEditor 5 ESLint preset

⚠⚠ This repository was moved ⚠⚠

The package was moved to the ckeditor5-linters-config mono-repository.

Usage

npm i --save-dev eslint-config-ckeditor5

Configure ESLint with a .eslintrc file using the following contents:

{
	"extends": "ckeditor5"
}

Changelog

See the CHANGELOG.md file.

Releasing package

Note: Be sure that version of dependencies in package.json are defined correctly.

Changelog

Before starting the release process, you need to generate the changelog:

npm run changelog

Publishing

After generating the changelog, you are able to release the package.

First, you need to bump the version:

npm run release:bump-version

You can also use the --dry-run option in order to see what this task does.

After bumping the version, you can publish the changes:

npm run release:publish

As in the previous task, the --dry-run option is also available.