0.0.3 • Published 11 months ago

eslint-astro-mate v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

eslint-astro-mate

A friendly ESLint configuration for Astro projects.

  • Fully compatible with eslint-stylistic.
  • Simplifies switching between different Astro configurations.
  • Formats astro files using prettier-plugin-astro without interfering with @stylistic rules.

Install

$ npm install --save-dev eslint-astro-mate

Usage

import { astro } from 'eslint-astro-mate'

export default astro()

Different configurations

import { astro } from 'eslint-astro-mate'

export default astro({
  config: 'jsx-a11y-recommended'
})

Use same options as stylistic

import { astro } from 'eslint-astro-mate'

export default astro({
  style: {
    pluginName: '@stylistic',
    indent: 2,
    quotes: 'single',
    semi: false,
    arrowParens: false,
    blockSpacing: true,
    quoteProps: 'consistent-as-needed',
    commaDangle: 'always-multiline',
  }
})

Override rules

import { astro } from 'eslint-astro-mate'

export default astro({
  overrides: {
    'astro/astro/prefer-class-list-directive': 'off',
  }
})

Change plugin prefix

Astro Mate helps you work with stylistic and TypeScript rules. To do this, it needs to know the prefix of each plugin's rules. If your configuration changes the default prefix for these plugins, you should also update it in Astro Mate.

import { astro } from 'eslint-astro-mate'

export default astro({
  style: {
    pluginName: '@new-prefix-style'
  },
  tsPluginName: '@new-prefix-typescript'
})

VSCode settings

In your project .vscode/settings.json

{
  "editor.defaultFormatter": "dbaeumer.vscode-eslint",
  "eslint.experimental.useFlatConfig": true,
  "eslint.format.enable": true,
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact",
    "vue",
    "html",
    "markdown",
    "json",
    "jsonc",
    "yaml",
    "astro",
    "css",
    "tailwindcss"
  ]
}
0.0.3

11 months ago

0.0.2

1 year ago

0.0.1

1 year ago