Skip to content

Commit 49a9d0c

Browse files
tinchoz49antfu
andauthoredJun 2, 2024··
feat: update astro plugin to v1.0 (#492)
Co-authored-by: Anthony Fu <github@antfu.me>
1 parent 710661b commit 49a9d0c

File tree

5 files changed

+25
-13
lines changed

5 files changed

+25
-13
lines changed
 

‎fixtures/input/astro.astro

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ const content = "hi!";
1414

1515

1616
<script>
17+
let { log: logger } = console
1718
document.querySelector('h1')?.addEventListener('click', () => {
18-
alert('hi!');
19+
logger('clicked');
1920
});
20-
2121
</script>

‎fixtures/output/all/astro.astro

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ const content = 'hi!';
1414

1515

1616
<script>
17-
document.querySelector('h1')?.addEventListener('click', () => {
18-
alert('hi!');
19-
});
20-
17+
const { log: logger } = console
18+
document.querySelector('h1')?.addEventListener('click', () => {
19+
logger('clicked')
20+
})
2121
</script>

‎fixtures/output/with-formatters/astro.astro

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ const content = 'hi!';
1414

1515

1616
<script>
17-
document.querySelector('h1')?.addEventListener('click', () => {
18-
alert('hi!');
19-
});
20-
17+
const { log: logger } = console
18+
document.querySelector('h1')?.addEventListener('click', () => {
19+
logger('clicked')
20+
})
2121
</script>

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
"@eslint-react/eslint-plugin": "^1.5.8",
4343
"@prettier/plugin-xml": "^3.4.1",
4444
"@unocss/eslint-plugin": ">=0.50.0",
45-
"astro-eslint-parser": "^0.16.3",
45+
"astro-eslint-parser": "^1.0.2",
4646
"eslint": ">=8.40.0",
47-
"eslint-plugin-astro": "^0.31.4",
47+
"eslint-plugin-astro": "^1.2.0",
4848
"eslint-plugin-format": ">=0.1.0",
4949
"eslint-plugin-react-hooks": "^4.6.0",
5050
"eslint-plugin-react-refresh": "^0.4.4",

‎src/configs/astro.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,28 @@ export async function astro(
3131
{
3232
files,
3333
languageOptions: {
34+
globals: pluginAstro.environments.astro.globals,
3435
parser: parserAstro,
3536
parserOptions: {
3637
extraFileExtensions: ['.astro'],
37-
parser: parserTs as any,
38+
parser: parserTs,
3839
},
40+
sourceType: 'module',
3941
},
4042
name: 'antfu/astro/rules',
43+
processor: 'astro/client-side-ts',
4144
rules: {
45+
// use recommended rules
46+
'astro/missing-client-only-directive-value': 'error',
47+
'astro/no-conflict-set-directives': 'error',
48+
'astro/no-deprecated-astro-canonicalurl': 'error',
49+
'astro/no-deprecated-astro-fetchcontent': 'error',
50+
'astro/no-deprecated-astro-resolve': 'error',
51+
'astro/no-deprecated-getentrybyslug': 'error',
4252
'astro/no-set-html-directive': 'off',
53+
'astro/no-unused-define-vars-in-style': 'error',
4354
'astro/semi': 'off',
55+
'astro/valid-compile': 'error',
4456

4557
...stylistic
4658
? {

0 commit comments

Comments
 (0)
Please sign in to comment.