File tree 5 files changed +25
-13
lines changed
5 files changed +25
-13
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ const content = "hi!";
14
14
15
15
16
16
<script >
17
+ let { log: logger } = console
17
18
document.querySelector('h1')?.addEventListener('click', () => {
18
- alert('hi! ');
19
+ logger('clicked ');
19
20
});
20
-
21
21
</script >
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ const content = 'hi!';
14
14
15
15
16
16
<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
+ })
21
21
</script >
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ const content = 'hi!';
14
14
15
15
16
16
<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
+ })
21
21
</script >
Original file line number Diff line number Diff line change 42
42
"@eslint-react/eslint-plugin" : " ^1.5.8" ,
43
43
"@prettier/plugin-xml" : " ^3.4.1" ,
44
44
"@unocss/eslint-plugin" : " >=0.50.0" ,
45
- "astro-eslint-parser" : " ^0.16.3 " ,
45
+ "astro-eslint-parser" : " ^1.0.2 " ,
46
46
"eslint" : " >=8.40.0" ,
47
- "eslint-plugin-astro" : " ^0.31.4 " ,
47
+ "eslint-plugin-astro" : " ^1.2.0 " ,
48
48
"eslint-plugin-format" : " >=0.1.0" ,
49
49
"eslint-plugin-react-hooks" : " ^4.6.0" ,
50
50
"eslint-plugin-react-refresh" : " ^0.4.4" ,
Original file line number Diff line number Diff line change @@ -31,16 +31,28 @@ export async function astro(
31
31
{
32
32
files,
33
33
languageOptions : {
34
+ globals : pluginAstro . environments . astro . globals ,
34
35
parser : parserAstro ,
35
36
parserOptions : {
36
37
extraFileExtensions : [ '.astro' ] ,
37
- parser : parserTs as any ,
38
+ parser : parserTs ,
38
39
} ,
40
+ sourceType : 'module' ,
39
41
} ,
40
42
name : 'antfu/astro/rules' ,
43
+ processor : 'astro/client-side-ts' ,
41
44
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' ,
42
52
'astro/no-set-html-directive' : 'off' ,
53
+ 'astro/no-unused-define-vars-in-style' : 'error' ,
43
54
'astro/semi' : 'off' ,
55
+ 'astro/valid-compile' : 'error' ,
44
56
45
57
...stylistic
46
58
? {
You can’t perform that action at this time.
0 commit comments