forked from salesforce/eslint-config-lwc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recommended.js
124 lines (112 loc) · 3.99 KB
/
recommended.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
* Copyright (c) 2018, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/
'use strict';
const restrictedGlobals = require('eslint-restricted-globals');
module.exports = {
plugins: ['import', 'jest'],
extends: [
require.resolve('./base'),
'eslint:recommended', // https://eslint.org/docs/rules/
'plugin:import/errors', // https://github.com/benmosher/eslint-plugin-import
'plugin:jest/recommended', // https://github.com/jest-community/eslint-plugin-jest
],
env: {
jest: true,
},
globals: {
// used to mock calls to global variables in jest tests
global: true,
},
rules: {
// Possible errors
// https://eslint.org/docs/rules/#possible-errors
'no-await-in-loop': 'error',
// Best practices
// https://eslint.org/docs/rules/#best-practices
'array-callback-return': 'error',
'consistent-return': 'error',
'default-case': 'error',
'dot-notation': ['error', { allowKeywords: true }],
eqeqeq: ['error', 'smart'],
'guard-for-in': 'error',
'no-alert': 'error',
'no-caller': 'error',
'no-else-return': 'error',
'no-empty-function': [
'error',
{
allow: ['arrowFunctions', 'functions', 'methods'],
},
],
'no-eval': 'error',
'no-extend-native': 'error',
'no-extra-bind': 'error',
'no-floating-decimal': 'error',
'no-implied-eval': 'error',
'no-iterator': 'error',
'no-labels': 'error',
'no-loop-func': 'error',
'no-multi-str': 'error',
'no-new': 'error',
'no-new-func': 'error',
'no-new-object': 'error',
'no-new-wrappers': 'error',
'no-octal-escape': 'error',
'no-proto': 'error',
'no-return-assign': 'error',
'no-return-await': 'error',
'no-script-url': 'error',
'no-self-compare': 'error',
'no-sequences': 'error',
'no-throw-literal': 'error',
'no-useless-concat': 'error',
'no-useless-escape': 'error',
'no-useless-return': 'error',
'no-unused-expressions': 'error',
'no-void': 'error',
'no-with': 'error',
radix: 'error',
'vars-on-top': 'error',
'wrap-iife': ['error', 'any'],
// Variables
// https://eslint.org/docs/rules/#variables
'no-label-var': 'error',
'no-restricted-globals': ['error'].concat(restrictedGlobals),
'no-shadow': 'error',
'no-shadow-restricted-names': 'error',
'no-undef-init': 'error',
'no-unused-vars': ['error', { vars: 'all', args: 'after-used' }],
'no-use-before-define': ['error', { functions: false }],
// NodeJs style
// https://eslint.org/docs/rules/#nodejs-and-commonjs
'handle-callback-err': 'error',
// ES6
// https://eslint.org/docs/rules/#ecmascript-6
'no-confusing-arrow': 'error',
'no-useless-computed-key': 'error',
'no-useless-constructor': 'error',
'no-useless-rename': 'error',
// LWC specific rules
'@lwc/lwc/no-api-reassignments': 'error',
'@lwc/lwc/no-async-operation': 'error',
'@lwc/lwc/no-attributes-during-construction': 'error',
'@lwc/lwc/no-document-query': 'error',
'@lwc/lwc/no-dupe-class-members': 'error',
'@lwc/lwc/no-inner-html': 'error',
'@lwc/lwc/no-leading-uppercase-api-name': 'error',
'@lwc/lwc/prefer-custom-event': 'error',
'@lwc/lwc/valid-api': [
'error',
{
disallowUnderscoreUppercaseMix: true,
},
],
// Disable unresolved import rule since it doesn't work well with the way the LWC compiler
// resolves the different modules
'import/no-unresolved': 'off',
},
};