mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 06:12:51 +00:00
16 lines
378 B
JavaScript
16 lines
378 B
JavaScript
/**
|
|
* https://ota-meshi.github.io/eslint-plugin-astro/user-guide/
|
|
*/
|
|
import eslintPluginAstro from 'eslint-plugin-astro';
|
|
export default [
|
|
// add more generic rule sets here, such as:
|
|
// js.configs.recommended,
|
|
...eslintPluginAstro.configs.recommended,
|
|
{
|
|
rules: {
|
|
// override/add rules settings here, such as:
|
|
// "astro/no-set-html-directive": "error"
|
|
},
|
|
},
|
|
];
|