15 lines
231 B
JavaScript
15 lines
231 B
JavaScript
|
module.exports = {
|
||
|
configs: {
|
||
|
recommended: {
|
||
|
rules: {
|
||
|
'target-namespace': 'error'
|
||
|
}
|
||
|
},
|
||
|
all: {
|
||
|
rules: {
|
||
|
'target-namespace': 'warn',
|
||
|
'no-manual-task': 'warn'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|