- Version: 18.3.0
- GitHub: https://github.com/hendrickson-tyler/eslint-config
- NPM: https://www.npmjs.com/package/%40hendrickson-tyler%2Feslint-config
- Downloads:
- Last Day: 31
- Last Week: 96
- Last Month: 246
Lint Rules
Description
This package contains a set of ESLint configs for a variety of languages, libraries, and frameworks. This is meant to ensure each of my personal projects has the same set of rules to keep them consistent. You are welcome to use these for your own projects.
Configs
Config files exist for the following use cases and are summarized below. You can mix and match these as needed and several configs inherit other configs automatically.
javascript
- Recommended rules for projects using JavaScript.typescript
- Recommended rules for projects using TypeScript.- Includes and modifies the rules from
javascript
as TypeScript is a superset of JavaScript.
- Includes and modifies the rules from
angular
- Recommended rules for projects using Angular.- Includes and modifies the rules from
typescript
andrxjs
as Angular uses TypeScript and RxJS by default.
- Includes and modifies the rules from
angular-html
- Recommended template (HTML) rules for projects using Angular.- Used in conjunction with
@angular-eslint/template-parser
.
- Used in conjunction with
rxjs
- Recommended rules for projects using the RxJS library.
Installation
From the root folder of your project, install the package with the following command:
npm i @hendrickson-tyler/eslint-config --save-dev
Angular Support
Package Version | Angular Version Support |
---|---|
1.x.x | 13 |
2.x.x | 14 |
3.x.x | 15 |
4.x.x | 16 |
For Angular 17 and above, the version number will match the Angular version number.
Usage
Once the package is installed, add the desired configs to the "extends"
section of the eslintrc.json
in the root of your project:
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"@hendrickson-tyler/eslint-config/angular"
],
...
}
...
]
}
Afterwards, you will be able to run your desired lint command to use the newly-imported lint rules.
NOTE: Keeping this package up to date is highly recommended. Be sure that the version number in your
package.json
contains a^
before the version number to update to the newest minor version when usingnpm update
.
Example:
"devDependencies": {
...
"@hendrickson-tyler/eslint-config": "^18.0.0",
...
}