1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-17 01:15:52 +02:00
ESLint shareable config to enforce strict conventions and good code quality. https://www.npmjs.com/package/eslint-config-conventions
Go to file
Divlo 4f625c3b88
build(deps): update latest
BREAKING CHANGE: peerDependencies:
`eslint@^8.33.0`, `eslint-plugin-import@^2.27.5`,
`eslint-plugin-promise@^6.1.1`, `eslint-plugin-unicorn@^45.0.2`
2023-02-06 23:33:28 +01:00
.github build(deps): update latest 2023-01-10 13:27:35 +01:00
.husky chore: initial commit 2022-02-19 16:05:21 +01:00
.vscode chore: initial commit 2022-02-19 16:05:21 +01:00
test test: fix with new rules introduced 2022-08-31 14:00:08 +02:00
.commitlintrc.json chore: initial commit 2022-02-19 16:05:21 +01:00
.editorconfig chore: initial commit 2022-02-19 16:05:21 +01:00
.eslintignore chore: initial commit 2022-02-19 16:05:21 +01:00
.eslintrc.json fix: relax @typescript-eslint/prefer-optional-chain 2022-11-21 09:09:06 +01:00
.gitattributes chore: initial commit 2022-02-19 16:05:21 +01:00
.gitignore chore: replace tape with tap 2022-03-19 14:28:00 +01:00
.lintstagedrc.json build(deps): update latest 2022-08-31 13:17:00 +02:00
.markdownlint-cli2.jsonc build(deps): update latest 2023-01-10 13:27:35 +01:00
.markdownlint.json build(deps): update latest 2023-01-10 13:27:35 +01:00
.npmrc chore: initial commit 2022-02-19 16:05:21 +01:00
.prettierrc.json chore: initial commit 2022-02-19 16:05:21 +01:00
.releaserc.json chore: initial commit 2022-02-19 16:05:21 +01:00
.taprc chore: replace tape with tap 2022-03-19 14:28:00 +01:00
CODE_OF_CONDUCT.md chore: initial commit 2022-02-19 16:05:21 +01:00
CONTRIBUTING.md chore: initial commit 2022-02-19 16:05:21 +01:00
eslintrc.json feat: support both JavaScript and TypeScript linting 2022-02-20 12:36:37 +01:00
index.js chore: initial commit 2022-02-19 16:05:21 +01:00
LICENSE chore: initial commit 2022-02-19 16:05:21 +01:00
package-lock.json build(deps): update latest 2023-02-06 23:33:28 +01:00
package.json build(deps): update latest 2023-02-06 23:33:28 +01:00
README.md build(deps): update latest 2023-02-06 23:33:28 +01:00
tsconfig.json build(deps): update latest 2023-01-10 13:27:35 +01:00

eslint-config-conventions

ESLint shareable config to enforce strict conventions and good code quality.

Licence MIT Contributor Covenant

Conventional Commits semantic-release npm version

📜 About

eslint-config-conventions is a ESLint configuration to enforce strict conventions and good code quality, it is highly inspired from eslint-config-standard-with-typescript but it is stricter and with no formatting rules, only code-quality rules. It supports both JavaScript and TypeScript.

This configuration is mostly for catching bugs and code-quality so it is recommended to use it with Prettier for a consistent code style, it works with any .prettierrc.json configuration.

More information about formatting rules vs code-quality rules can be found on Prettier vs. Linters.

⚙️ Getting Started

Prerequisites

Installation

npm@<7 does not automatically install peerDependencies, so if that's what you're using, install them manually. Here is an example, but use it only for reference, because your decisions regarding version ranges and range specifiers may vary.

npm install --save-dev \
  eslint@^8.33.0 \
  eslint-plugin-import@^2.27.5 \
  eslint-plugin-promise@^6.1.1 \
  eslint-plugin-unicorn@^45.0.2 \
  eslint-config-conventions@latest

Yes, this is a large number of packages. This is due to a known limitation in ESLint.

This list of dependencies are:

If you want to use TypeScript, you also need to install:

npm install --save-dev \
  typescript@^4.8.2 \
  @typescript-eslint/eslint-plugin@^5.36.1 \
  @typescript-eslint/parser@^5.36.1

Dependencies are:

You will need to install some dependencies in addition to those required:

npm install --save-dev prettier eslint-config-prettier eslint-plugin-prettier

# Create an empty config file to let editors and other tools know you are using Prettier
# You can personalize it with your own rules
echo {}> .prettierrc.json

.eslintrc.json

{
  "extends": ["conventions", "prettier"],
  "plugins": ["prettier"],
  "parserOptions": {
    "project": "./tsconfig.json"
  },
  "rules": {
    "prettier/prettier": "error"
  }
}

Note: Please read some important instructions regarding the project option here.

"parserOptions.project" is only required if you use TypeScript.

package.json

{
  "scripts": {
    "lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
    "lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\""
  }
}

Usage

npm run lint:eslint
# or to apply automatic fixes to code
npm run lint:eslint -- --fix

# Validate code formatting in all supported languages by Prettier
npm run lint:prettier

💡 Contributing

Anyone can help to improve the project, submit a Feature Request, a bug report or even correct a simple spelling mistake.

The steps to contribute can be found in the CONTRIBUTING.md file.

📄 License

MIT