5.1.0 • Published 2 years ago
@serverless/eslint-config v5.1.0
@serverless/eslint-config
Common ESLint, Prettier configuration for Serverless projects
Configuration in a project
1. Install needed dependencies & the config itself
npm i --save-dev eslint eslint-plugin-import prettier git-list-updated @serverless/eslint-config2. Configure ESLint
Add eslintConfig to package.json:
For Node.js projects:
{
  "eslintConfig": {
    "extends": "@serverless/eslint-config/node",
    "root": true
  }
}For Browser projects:
{
  "eslintConfig": {
    "extends": "@serverless/eslint-config/browser",
    "root": true
  }
}3. Configure Prettier
Add prettier.config.js file with following content:
'use strict';
module.exports = require('@serverless/eslint-config/prettier.config');4. Configure npm scripts
{
  "scripts": {
    "lint": "eslint  --ignore-path .gitignore .",
    "lint:updated": "pipe-git-updated --ext=js -- eslint --ignore-path .gitignore",
    "prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
    "prettier-check:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
    "prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
    "prettify:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write"
  }
}5. Ensure to validate changes in CI
Run following validation of PR's in CI build.
Note: following should be run only for PR's (as *:updated) scripts may fail on branch or tag builds due to lack of existing reference to main)
npm run lint:updated && npm run prettier-check:updatedCommitlint and automation of release process (experimental)
Commit messages in context of this project should follow Convention Commits Convention
See proposed Commit Message Guidelines
Release process automation with help of Travis CI
- Commit messages are validated (with commitlint) in context of PR's that are coming from local branches. To not increase difficulty of contribution, we do not enforce that on external contributors. Still in turn PR's coming from forks (if commit messages do not follow CC), are expected to be squash merged with a valid CC commit message.
 - In Release PR by running 
npm run prepare-releasecommand developer bumps version inpackage.jsonand generates the changelog entry (which can be altered if needed). - Release PR's are automatically detected in CI by fact of 
versioninpackage.jsonfile being changed. In context of that build, existence of new version changelog entry (inCHANGELOG.md) is validated. - Once release PR is merged, 
mainbuild detects that release PR was merged by fact that it covers change ofversionfield inpackage.jsonfile. In such case (after tests pass) version tag is created and pushed to the repository - In context fo version tag build, new version is published to npm, and release notes are retrieved from CHANGELOG.md and pushed to GitHub.
 - If needed release notes can be updated at any time afterwards. They should be updated in 
CHANGELOG.mdand change can be pushed to GitHub release notes by running:npx github-release-from-cc-changelog <version>