forked from salesforce/eslint-config-lwc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecommended.js
More file actions
140 lines (126 loc) · 4.64 KB
/
recommended.js
File metadata and controls
140 lines (126 loc) · 4.64 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
* 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 semver = require('semver');
const { ESLint } = require('eslint');
const restrictedGlobals = require('eslint-restricted-globals');
module.exports = {
plugins: [
'import', // https://github.com/benmosher/eslint-plugin-import
'jest', // https://github.com/jest-community/eslint-plugin-jest
'@salesforce/eslint-plugin-lightning', // https://github.com/salesforce/eslint-plugin-lightning
],
extends: [
require.resolve('./base'),
'eslint:recommended',
'plugin:import/errors',
'plugin:jest/recommended',
],
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-inner-html': 'error',
'@lwc/lwc/no-leading-uppercase-api-name': 'error',
'@lwc/lwc/no-template-children': 'error',
'@lwc/lwc/prefer-custom-event': 'error',
'@lwc/lwc/valid-api': [
'error',
{
disallowUnderscoreUppercaseMix: true,
},
],
'@lwc/lwc/valid-graphql-wire-adapter-callback-parameters': 'error',
// Lightning
'@salesforce/lightning/valid-apex-method-invocation': 'error',
// Disable unresolved import rule since it doesn't work well with the way the LWC compiler
// resolves the different modules
'import/no-unresolved': 'off',
// Misc
// In ESLint v8 the built-in `no-dupe-class-member` rules added support for duplicated
// class fields. We should disable the `lwc/no-dupe-class-members` rule to avoid duplicated
// linting errors.
'@lwc/lwc/no-dupe-class-members': semver.lt(ESLint.version, '8.0.0') ? 'error' : 'off',
},
};