-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.js
79 lines (79 loc) · 1.87 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2019,
sourceType: 'module',
project: './tsconfig.json',
},
plugins: [
// 'ember',
'prettier',
'@typescript-eslint',
'import',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/errors',
'plugin:import/typescript',
'plugin:qunit/recommended',
'plugin:prettier/recommended',
],
env: {
browser: true,
node: true,
},
globals: {
auth0: false,
},
rules: {
'prettier/prettier': 'error',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/ban-ts-comment': [
'error',
{ 'ts-ignore': 'allow-with-description' },
],
'@typescript-eslint/type-annotation-spacing': ['error'],
'linebreak-style': 'off',
'class-methods-use-this': 'off',
'import/no-unresolved': 'off',
'@typescript-eslint/no-this-alias': [
'error',
{
allowDestructuring: true,
allowedNames: ['self'],
},
],
'require-yield': 'off',
'no-plusplus': 'off',
'import/no-cycle': 'off',
'prefer-rest-params': 'off',
'ember/no-mixins': 'off',
'ember/require-computed-property-dependencies': 'off',
'no-param-reassign': ['error', { props: false }],
'func-names': ['error', 'always', { generators: 'never' }],
},
overrides: [
// node files
{
files: [
'ember-cli-build.js',
'testem.js',
'config/**/*.js',
'lib/*/index.js',
],
parserOptions: {
sourceType: 'script',
ecmaVersion: 2015,
},
env: {
browser: false,
node: true,
},
},
],
};