Shared eslint config for all amo related js projects
Перейти к файлу
dependabot[bot] e229975047
⬆️ Bump braces from 3.0.2 to 3.0.3 (#575)
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3)

---
updated-dependencies:
- dependency-name: braces
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-23 10:53:16 +02:00
.circleci Bump Node versions in CI (#569) 2024-06-03 09:38:25 +02:00
.github Update dependabot.yml 2023-04-04 15:27:38 +02:00
tests Split config into a base config and the (old) config, which includes base + airbnb (full) and React rules (#366) 2021-10-25 09:17:54 +02:00
.gitignore Split config into a base config and the (old) config, which includes base + airbnb (full) and React rules (#366) 2021-10-25 09:17:54 +02:00
.npmignore Use Dependabot instead of Renovate (#475) 2023-01-05 15:07:10 +01:00
.npmrc Add npm config to normalize the tag names 2020-05-22 14:53:41 +02:00
.prettierignore Add prettier config (#284) 2020-12-11 12:35:33 +01:00
.prettierrc Add prettier config (#284) 2020-12-11 12:35:33 +01:00
CODE_OF_CONDUCT.md Apply Prettier 2021-10-25 09:18:13 +02:00
LICENSE Add license (fixes #3) 2017-06-09 19:25:22 +01:00
README.md Switch to Circle CI (#286) 2020-12-15 20:03:55 +01:00
base.js Split config into a base config and the (old) config, which includes base + airbnb (full) and React rules (#366) 2021-10-25 09:17:54 +02:00
index.js Split config into a base config and the (old) config, which includes base + airbnb (full) and React rules (#366) 2021-10-25 09:17:54 +02:00
package.json ⬆️ release 5.11.0 2024-06-03 09:46:31 +02:00
yarn.lock ⬆️ Bump braces from 3.0.2 to 3.0.3 (#575) 2024-07-23 10:53:16 +02:00

README.md

eslint-config-amo

CircleCI npm version

Shared eslint config for all amo related JS projects.

Versioning

This project follows the semantic versioning specification.

In order to release a new version, please follow these steps:

  1. Make sure your local master branch is up-to-date.

  2. Run the following command from the master branch to (1) bump the version accordingly and (2) create a commit and a tag for the release:

    npm version minor
    

    Note: change minor to patch or major depending on the release (but minor is the most frequent).

  3. Push to the main repository (denoted upstream below):

    git push upstream master --tag
    
  4. Create a GitHub Release for the new tag: https://github.com/mozilla/eslint-config-amo/releases (you can either select the tag itself or create a new "draft"). Please add a short description of the changes (see the other releases for inspiration).