3.0.0 • Published 3 years ago

@funda/eslint-config v3.0.0

Weekly downloads
40
License
MIT
Repository
github
Last release
3 years ago

semantic-release

Funda's eslint config

For this to work you need eslint 8.

How to use

Install

npm i eslint @funda/eslint-config @nuxtjs/eslint-config @babel/eslint-parser prettier eslint-config-prettier eslint-plugin-prettier --save-dev

Add this as your config

Create your .eslintrc.js file.

module.exports = {
    extends: ['@funda/eslint-config'],
};

For more information about the rules and settings we currently have just check the index.js file.

Don't forget about .eslintignore files.

How to push your changes

This repo follows semantic versioning. You should be able to update patch and minor versions without requiring any changes to your code.

This repo uses commitlint, which means that it follows specific commit message rules. If the messages are not on the expected format it wont be possible to commit/push your changes.

Example of commit message:

'feat(branch_name): commit message' or 'fix(branch_name): commit message'

PS: It is recommended to use the terminal for commit, if you use any GUI it might be necessary to update you local variable PATH on your GUI. Reference: Husky issues