We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7534446 commit ffd1574Copy full SHA for ffd1574
template/.eslintrc.js
@@ -22,22 +22,5 @@ module.exports = {
22
assert: true,
23
require: true,
24
request: true
25
- },
26
- // add your custom rules here
27
- rules: {
28
- // disallow reassignment of function parameters
29
- // disallow parameter object manipulation except for specific exclusions
30
- 'no-param-reassign': ['error',
31
- {
32
- props: true,
33
- ignorePropertyModificationsFor: [
34
- 'state', // for vuex state
35
- 'acc', // for reduce accumulators
36
- 'e' // for e.returnvalue
37
- ]
38
- }
39
- ],
40
- // allow debugger during development
41
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
42
}
43
0 commit comments