Registry / testing / eslint-config-axeptio

eslint-config-axeptio

JSON →
library1.0.0jsnpmunverified

Shared ESLint configuration for Axeptio projects, version 1.0.0. Provides a consistent set of linting rules tailored for Axeptio's codebase. No release cadence specified; likely updated on demand. Differentiators: opinionated rules specific to Axeptio, not generic like eslint-config-airbnb. Only peer dependency is eslint ^8.13.0.

npm install eslint-config-axeptio
INSTALL
IMPORT
SIG · ESLINT-CONFIG-AXEP
E
eslint-config-axeptio
testingjavascriptv1.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

default export
module.exports = { extends: ['eslint-config-axeptio'] }
import config from 'eslint-config-axeptio'
This is a CommonJS module; use require() in .eslintrc.js or set 'type': 'module' in package.json if using ESM.
extend in eslint config
extends: ['eslint-config-axeptio']
extends: ['axeptio']
Use the full package name or 'axeptio' if npm scope is not needed, but official recommendation is the full name.
override in eslint config
overrides: [{ files: ['*.ts'], extends: ['eslint-config-axeptio'] }]
overrides: [{ files: ['*.ts'], extends: ['axeptio'] }]
Always use the full package name for clarity.

Example .eslintrc.js showing how to extend the shared Axeptio config.

module.exports = { extends: ['eslint-config-axeptio'], rules: { // override rules here } };
Debug
Known issues
gotchaConfig is not automatically applied; must be explicitly extended.
fix
Add 'extends: ["eslint-config-axeptio"]' to your ESLint config.
affects: >=1.0.0
deprecatedESLint 9+ flat config not supported; only legacy .eslintrc format.
fix
Use .eslintrc.js or .eslintrc.json with peer eslint ^8.13.0.
affects: >=1.0.0
gotchaPackage name includes 'eslint-config-', but may conflict with scoped packages.
fix
Always use full package name 'eslint-config-axeptio' when extending.
affects: >=1.0.0
Errors
Common errors & fixes
Error: Failed to load config "eslint-config-axeptio" to extend from.
ESLint cannot find the config package.
fix
Ensure eslint-config-axeptio is installed: npm install --save-dev eslint-config-axeptio.
Error: Cannot find module 'eslint-config-axeptio'
Package not installed or missing node_modules.
fix
Run npm install in your project root.
Oops! Something went wrong! :( ESLint: 8.x.x Error: Failed to load plugin 'eslint-plugin-axeptio'
The config may reference a plugin that is not installed.
fix
Ensure all plugin dependencies are installed if the config uses them.
Upgrade
Version history
1.0.0latest on npm
Audit
Dependencies
eslintrequiredpeer dependency required for the config to function
Agent activity
2 hits · last 30 days
node
2
Resources
eslint-config-axeptio — npm install eslint-config-axeptio · libregistry