@becklyn/eslint
v0.1.1
Published
the eslint-config base we use for our TypeScript apps
Downloads
559
Readme
eslint-config
The eslint-config base we use for our TypeScript apps.
Usage
Use in your .eslintrc.js
:
/** @type {import("eslint").Linter.Config} */
module.exports = {
extends: [
"@becklyn/eslint-config/eslint.js",
"plugin:@dword-design/import-alias/recommended",
],
rules: {
"@dword-design/import-alias/prefer-alias": [
"error",
{
alias: {
"@": ".",
},
},
],
},
};