forked from ember-cli/eslint-plugin-ember
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-no-inline-event-handlers.js
More file actions
71 lines (66 loc) · 1.91 KB
/
template-no-inline-event-handlers.js
File metadata and controls
71 lines (66 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
const rule = require('../../../lib/rules/template-no-inline-event-handlers');
const RuleTester = require('eslint').RuleTester;
//------------------------------------------------------------------------------
// Tests
//------------------------------------------------------------------------------
const ruleTester = new RuleTester({
parser: require.resolve('ember-eslint-parser'),
parserOptions: { ecmaVersion: 2022, sourceType: 'module' },
});
ruleTester.run('template-no-inline-event-handlers', rule, {
valid: [
`<template>
<button {{on "click" this.handleClick}}>Click</button>
</template>`,
`<template>
<input {{on "input" this.handleInput}} />
</template>`,
`<template>
<div>No handlers</div>
</template>`,
],
invalid: [
{
code: `<template>
<button onclick="alert('test')">Click</button>
</template>`,
output: null,
errors: [
{
message:
'Do not use inline event handlers like "onclick". Use the (on) modifier instead.',
type: 'GlimmerAttrNode',
},
],
},
{
code: `<template>
<div onmousedown="handleEvent()">Content</div>
</template>`,
output: null,
errors: [
{
message:
'Do not use inline event handlers like "onmousedown". Use the (on) modifier instead.',
type: 'GlimmerAttrNode',
},
],
},
{
code: `<template>
<form onsubmit="return false;">Form</form>
</template>`,
output: null,
errors: [
{
message:
'Do not use inline event handlers like "onsubmit". Use the (on) modifier instead.',
type: 'GlimmerAttrNode',
},
],
},
],
});