forked from CenterForOpenScience/ember-osf-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.template-lintrc.js
More file actions
30 lines (26 loc) · 791 Bytes
/
.template-lintrc.js
File metadata and controls
30 lines (26 loc) · 791 Bytes
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
/* eslint-env node */
'use strict';
module.exports = {
extends: 'recommended',
rules: {
'block-indentation': 4,
'no-bare-strings': true,
'no-implicit-this': true,
'no-nested-interactive': false,
'no-action': false,
'no-curly-component-invocation': false,
'require-input-label': false,
'no-unknown-arguments-for-builtin-components': false,
'no-yield-only': false,
'no-nested-splattributes': false,
'no-down-event-binding': false,
'no-quoteless-attributes': false,
'no-forbidden-elements': false,
'no-link-to-positional-params': false,
'no-passed-in-event-handlers': false,
quotes: 'single',
},
ignore: [
'handbook-docs/**/*',
],
};