
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@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
and eslint-config-prettier
for this to work.
npm i -D 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 43 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.