Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
eslint-config-airbnb-base-typescript
Advanced tools
Airbnb Base ESLint config with TypeScript support
Airbnb's ESLint config with TypeScript support
npm install eslint-config-airbnb-typescript --save-dev
ESLint plugins used by this config must also be installed within your project. This is a limitation within ESLint (see RFC and progress).
npm install eslint-plugin-import@^2.22.0 \
eslint-plugin-jsx-a11y@^6.3.1 \
eslint-plugin-react@^7.20.3 \
eslint-plugin-react-hooks@^4.0.8 \
@typescript-eslint/eslint-plugin@^4.4.1 \
--save-dev
If you don't need React support:
npm install eslint-plugin-import@^2.22.0 \
@typescript-eslint/eslint-plugin@^4.4.1 \
--save-dev
Add "extends": "airbnb-typescript"
to your ESLint config file.
If you don't need React support, add "extends": "airbnb-typescript/base"
instead.
An example .eslintrc.js
:
module.exports = {
extends: ['airbnb-typescript'],
};
This config requires knowledge of your TypeScript config.
In your ESLint config, set parserOptions.project to the path of your tsconfig.json
.
For example:
module.exports = {
extends: ['airbnb-typescript'],
+ parserOptions: {
+ project: './tsconfig.json',
+ }
};
Open a terminal to the root of your project, and run the following command:
npx eslint . --ext .js,.jsx,.ts,.tsx
ESLint will lint all .js, .jsx, .ts, and .tsx files within the current folder, and output results to your terminal.
You can also get results in realtime inside most IDEs via a plugin.
Yep! This config is a drop-in replacement for eslint-config-airbnb
, decorating it with TypeScript support.
This means you are attempting to lint a file that tsconfig.json
doesn't include.
A common fix is to create a tsconfig.eslint.json
file, which extends your tsconfig.json
file and includes all files you are linting.
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts", "src/**/*.js", "test/**/*.ts"]
}
Update your ESLint config file:
parserOptions: {
- project: './tsconfig.json',
+ project: './tsconfig.eslint.json',
}
airbnb-typescript/base
This is a known problem. Some suggestions exist in this GitHub issue.
The goal of eslint-config-airbnb-typescript
is to simply decorate eslint-config-airbnb
with TypeScript support. It's not a single config to cater for all TypeScript linting requirements. For additional functionality, alter your ESLint config file. For example:
module.exports = {
extends: [
'airbnb-typescript',
'airbnb/hooks',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
};
My personal ESLint config file with support for Jest, Promises, and Prettier can be found in create-exposed-app.
Authored and maintained by Matt Turnbull (iamturns.com / @iamturns)
A big thank you to all contributors!
Open source licensed as MIT.
FAQs
Airbnb Base ESLint config with TypeScript support
We found that eslint-config-airbnb-base-typescript demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.