-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
60 lines (59 loc) · 1.49 KB
/
.eslintrc.js
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
'use strict';
module.exports = {
root: true,
parser: '@babel/eslint-parser',
parserOptions: {
requireConfigFile: false,
ecmaVersion: 2018,
sourceType: 'module',
babelOptions: {
plugins: [['@babel/plugin-proposal-decorators', { decoratorsBeforeExport: true }]],
},
},
plugins: ['ember', 'qunit'],
extends: [
'eslint:recommended',
'plugin:ember/recommended',
'plugin:qunit/recommended',
'plugin:prettier/recommended',
],
env: {
browser: true,
},
rules: {
'no-restricted-imports': [
'error',
'lodash',
{
name: '@ember/test-helpers',
importNames: ['render', 'visit', 'find'],
message:
"Please import 'render' from '@1024pix/ember-testing-library'.\n Please import 'visit' from '@1024pix/ember-testing-library'.\n. 'find' should be replaced with '@1024pix/ember-testing-library' 'find...'/'get...'/'query...' methods to enforce accessible usages.",
},
],
},
overrides: [
// node files
{
files: [
'scripts/*.js',
'.eslintrc.js',
'.template-lintrc.js',
'ember-cli-build.js',
'index.js',
'testem.js',
'blueprints/**/*.js',
'config/**/*.js',
'tests/dummy/config/**/*.js',
],
excludedFiles: ['addon/**', 'addon-test-support/**', 'app/**', 'tests/dummy/app/**'],
parserOptions: {
sourceType: 'script',
},
env: {
browser: false,
node: true,
},
},
],
};