Skip to content

Commit f0c67c7

Browse files
authored
fix(eslint): rule understands interfaces (QwikDev#689)
1 parent 521a2de commit f0c67c7

File tree

7 files changed

+43
-4
lines changed

7 files changed

+43
-4
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
- 'packages/qwik/src/**/*.toml'
5151
- 'packages/qwik/src/**/*.rs'
5252
- 'packages/qwik/src/**/*.lock'
53+
- 'packages/eslint-plugin-qwik/**/*.ts'
5354
- 'tsconfig.json'
5455
- name: Print fullbuild output
5556
run: echo ${{ steps.filter.outputs.fullbuild == 'true' || github.event.inputs.disttag != '' }}

packages/eslint-plugin-qwik/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { validLexicalScope } from './lib/validLexicalScope';
2-
import { noUseAfterAwait } from './lib/noUseAfterAwait';
1+
import { validLexicalScope } from './src/validLexicalScope';
2+
import { noUseAfterAwait } from './src/noUseAfterAwait';
33

44
export const rules = {
55
'no-use-after-await': noUseAfterAwait,

packages/eslint-plugin-qwik/qwik.unit.ts

+29
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,18 @@ ruleTester.run('my-rule', rules['no-use-after-await'], {
8181

8282
ruleTester.run('valid-lexical-scope', rules['valid-lexical-scope'], {
8383
valid: [
84+
`
85+
import { useMethod, component$ } from 'stuff';
86+
export interface Value {
87+
value: number;
88+
}
89+
export const HelloWorld = component$(() => {
90+
const state: Value = { value: 12 };
91+
useWatch$(() => {
92+
console.log(state.value);
93+
});
94+
return <Host></Host>
95+
});`,
8496
`
8597
import { useMethod, component$ } from 'stuff';
8698
interface Value {
@@ -324,6 +336,23 @@ ruleTester.run('valid-lexical-scope', rules['valid-lexical-scope'], {
324336
'Identifier ("a") can not be captured inside the scope (onClick$) because it is a Promise, which is not serializable. Check out https://qwik.builder.io/docs/advanced/optimizer for more details.',
325337
],
326338
},
339+
{
340+
code: `
341+
import { useMethod, component$ } from 'stuff';
342+
export interface Value {
343+
value: () => void;
344+
}
345+
export const HelloWorld = component$(() => {
346+
const state: Value = { value: () => console.log('thing') };
347+
useWatch$(() => {
348+
console.log(state.value);
349+
});
350+
return <Host></Host>
351+
});`,
352+
errors: [
353+
'Identifier ("state") can not be captured inside the scope (useWatch$) because "state.value" is a function, which is not serializable. Check out https://qwik.builder.io/docs/advanced/optimizer for more details.',
354+
],
355+
},
327356
],
328357
});
329358

packages/eslint-plugin-qwik/lib/validLexicalScope.ts packages/eslint-plugin-qwik/src/validLexicalScope.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ function _isTypeCapturable(
324324
}
325325
}
326326

327-
if (!symbolName.startsWith('__')) {
327+
if (!symbolName.startsWith('__') && type.symbol.valueDeclaration) {
328328
return {
329329
type,
330330
typeStr: checker.typeToString(type),

scripts/validate-cli.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,21 @@ async function validateStarter(
9999
console.log(`🌟 ${projectName}: copy @builder.io/qwik distribution`);
100100
const qwikNodeModule = join(appDir, 'node_modules', '@builder.io', 'qwik');
101101
rmSync(qwikNodeModule, { force: true, recursive: true });
102-
103102
const distQwik = join(__dirname, '..', 'packages', 'qwik', 'dist');
104103
cpSync(distQwik, qwikNodeModule);
105104

105+
console.log(`🌟 ${projectName}: copy eslint-plugin-qwik distribution`);
106+
const eslintNodeModule = join(appDir, 'node_modules', 'eslint-plugin-qwik');
107+
rmSync(eslintNodeModule, { force: true, recursive: true });
108+
const distEslintQwik = join(__dirname, '..', 'packages', 'eslint-plugin-qwik', 'dist');
109+
cpSync(distEslintQwik, eslintNodeModule);
110+
106111
console.log(`🌈 ${projectName}: npm run build`);
107112
await execa('npm', ['run', 'build'], { cwd: appDir, stdout: 'inherit' });
108113

114+
console.log(`🌈 ${projectName}: npm run lint`);
115+
await execa('npm', ['run', 'lint'], { cwd: appDir, stdout: 'inherit' });
116+
109117
accessSync(join(appDir, '.vscode'));
110118
accessSync(join(appDir, 'dist', 'favicon.ico'));
111119
accessSync(join(appDir, 'dist', 'q-manifest.json'));

starters/apps/base/.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
module.exports = {
2+
root: true,
23
env: {
34
browser: true,
45
es2021: true,

0 commit comments

Comments
 (0)