Gathering detailed insights and metrics for eslint-config-hughx-ts
Gathering detailed insights and metrics for eslint-config-hughx-ts
Gathering detailed insights and metrics for eslint-config-hughx-ts
Gathering detailed insights and metrics for eslint-config-hughx-ts
Provides hughx’s TypeScript conventions as .eslintrc shared configs. Emphasizes readability and ease of writing.
npm install eslint-config-hughx-ts
Typescript
Module System
Node Version
NPM Version
JavaScript (97.51%)
TypeScript (2.49%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
33 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Nov 26, 2023
Latest Version
0.1.1
Package Id
eslint-config-hughx-ts@0.1.1
Unpacked Size
8.86 kB
Size
3.36 kB
File Count
9
NPM Version
9.8.1
Node Version
20.6.1
Published on
Nov 26, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
16
Provides hughx’s TypeScript conventions as .eslintrc
shared configs.
Emphasizes readability and ease of writing.
ℹ️ For plain JavaScript support, use eslint-config-hughx
instead.
1npm install -D eslint-config-hughx-ts
You will have to install peerDependencies
manually:
1# npm install -D 2yarn add -D \ 3 @hughx/tsconfig \ 4 @typescript-eslint/eslint-plugin \ 5 @typescript-eslint/parser \ 6 eslint \ 7 eslint-config-airbnb-typescript \ 8 eslint-config-hughx \ 9 eslint-config-hughx-ts \ 10 eslint-import-resolver-typescript \ 11 eslint-plugin-import \ 12 typedoc \ 13 typescript
1# npm install -D 2yarn add -D \ 3 @hughx/tsconfig \ 4 @types/react \ 5 @typescript-eslint/eslint-plugin \ 6 @typescript-eslint/parser \ 7 eslint \ 8 eslint-config-airbnb-base \ 9 eslint-config-airbnb-typescript \ 10 eslint-config-hughx \ 11 eslint-config-hughx-ts \ 12 eslint-import-resolver-typescript \ 13 eslint-plugin-import \ 14 eslint-plugin-jsx-a11y \ 15 eslint-plugin-react \ 16 eslint-plugin-react-hooks \ 17 typedoc \ 18 typescript
1# npm install -D 2yarn add -D \ 3 @hughx/tsconfig \ 4 @types/node \ 5 @typescript-eslint/eslint-plugin \ 6 @typescript-eslint/parser \ 7 eslint \ 8 eslint-config-airbnb-base \ 9 eslint-config-airbnb-typescript \ 10 eslint-config-hughx \ 11 eslint-config-hughx-ts \ 12 eslint-import-resolver-typescript \ 13 eslint-plugin-import \ 14 typedoc \ 15 typescript
Extend hughx-ts
in your project’s .eslintrc.js
or equivalent:
1module.exports = { 2 "extends": [ 3 "hughx-ts", 4 ], 5 // … 6}
Eslint-config-hughx-ts defaults to the latest version of JavaScript/ECMAScript at the time of release. If your transpiler isn’t set up for this (or you don’t use one), then you should override both env.es*
and parserOptions.ecmaVersion
, e.g.
1// Downgrading from ES2021 to ES6 2module.exports = { 3 "extends": [ 4 "hughx-ts", 5 ], 6 "env": { 7 "es2021": false, 8 "es6": true 9 }, 10 "parserOptions": { 11 "ecmaVersion": 6 12 } 13};
Then, create a tsconfig.json
in your root and extend @hughx/tsconfig
:
1{ 2 "extends": "@hughx/tsconfig" 3}
You can extend from one of the following to bring in sensible defaults for different use cases:
hughx-ts/react
@hughx/tsconfig/react.json
hughx-ts/node
@hughx/tsconfig/node.json
hughx-ts/web-components
@hughx/tsconfig/web-components.json
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
5 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More