![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
eslint-config-altheajs
Advanced tools
Althea Web Service's eslint
configuration.
You can view this package on NPM: click here
This package supports the following by default out of the box:
eslint-config-airbnb
- React with hooks supporteslint-config-prettier
- Prettier support. Prettier configs will override the ESLint rules associated with style choices. In other words, Pretter > ESLint
.eslint-plugin-vue
- Vue supportThis package also has the option for supporting TypeScript projects as well:
eslint-config-airbnb-typescript
- React with hooks supportnpm install --save-dev eslint-config-altheajs
yarn add --dev eslint-config-altheajs
The simplest way to install and use the default config is to reference it directly in your package.json
file as follows:
{
// ...package.json
"eslintConfig": {
"extends" : ["altheajs"]
}
}
If you'd like to extend the configurations, create a .eslintrc.js
file at the root of your project that contains the following:
module.exports = {
"extends": ["altheajs"], // you can omit "eslint-config-"
// if using typescript
"parserOptions": { "project": "./tsconfig.json" }
// ...more custom config overrides
};
If you're using a typescript project, you can use the exported TypeScript ESLint configuration.
{
// ...package.json
"eslintConfig": {
"extends": ["altheajs/typescript"]
}
}
Since this package already bundles the eslint-config-prettier
package under the hood, there is no need to install the dependency yourself. You can use your Prettier config as you would normally in your project, and ESLint will prefer Prettier for style changes over its own.
You can add in an npm script to your package.json
which will apply lint rules across all the file patterns specified. Simply add the following to apply to all files:
{
// ...package.json
"scripts": {
// check for linting errors
"lint:quality": "npx eslint -c .eslintrc.js . --ext .js,.jsx,.ts,.tsx"
// fix and apply the rules to those that can be fixed
"fix:quality": "npx eslint -c .eslintrc.js . --ext .js,.jsx,.ts,.tsx --fix",
}
}
Install ESLint extension: View → Extensions
then find and install the ESLint extension.
Reload the editor.
In your user settings Code -> Preferences -> Settings
add the following settings:
{
// ...settings.json
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
Check out all of ESlint's configuration options.
FAQs
An eslint config, what else?
The npm package eslint-config-altheajs receives a total of 2 weekly downloads. As such, eslint-config-altheajs popularity was classified as not popular.
We found that eslint-config-altheajs 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.
Security News
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.