Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@anexia/eslint-config-aqua
Advanced tools
ESLint shareable config
npm i -D @anexia/eslint-config-aqua
Add the ESLint config to your package.json
:
{
"name": "my-project",
...
"eslintConfig": {
"extends": "@anexia/eslint-config-aqua"
}
}
Or eslintrc.json
:
{
"extends": "@anexia/eslint-config-aqua"
}
If you are developing with Javascript in the browser consider adding:
{
"extends": "@anexia/eslint-config-aqua"
"env": {
"browser": true
}
}
or use the platform specific configs for Node.js:
{
"extends": "@anexia/eslint-config-aqua/node"
}
or Svelte:
{
"extends": "@anexia/eslint-config-aqua/svelte"
}
or React:
{
"extends": "@anexia/eslint-config-aqua/react"
}
or any other JSX:
{
"extends": "@anexia/eslint-config-aqua/jsx"
}
or Vue.js:
{
"extends": "@anexia/eslint-config-aqua/vue"
}
Using the Vue extended config will require you to additionally install eslint-plugin-vue
and babel-eslint
npm i -D babel-eslint eslint-plugin-vue
If you want to apply your own .prettierrc
rules with support for disabling the correct rules, just add /prettier
before the target name.
Also make sure you install prettier
, eslint-plugin-prettier
and eslint-config-prettier
for this to work.
npm i -D prettier eslint-plugin-prettier eslint-config-prettier
{
"extends": "@anexia/eslint-config-aqua/prettier"
}
{
"extends": "@anexia/eslint-config-aqua/prettier/node"
}
or Svelte:
{
"extends": "@anexia/eslint-config-aqua/prettier/svelte"
}
or React:
{
"extends": "@anexia/eslint-config-aqua/prettier/react"
}
or any other JSX:
{
"extends": "@anexia/eslint-config-aqua/prettier/jsx"
}
or Vue.js:
{
"extends": "@anexia/eslint-config-aqua/prettier/vue"
}
FAQs
ESLint shareable config
The npm package @anexia/eslint-config-aqua receives a total of 14 weekly downloads. As such, @anexia/eslint-config-aqua popularity was classified as not popular.
We found that @anexia/eslint-config-aqua demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.