Disable article addition in lint script
This commit is contained in:
parent
12927d787d
commit
bc541bad16
1 changed files with 4 additions and 1 deletions
|
@ -29,7 +29,7 @@ const articles = {
|
|||
}
|
||||
|
||||
function addArticleToPresets(layerConfig: {presets?: {title: any}[]}){
|
||||
//*
|
||||
/*
|
||||
if(layerConfig.presets === undefined){
|
||||
return
|
||||
}
|
||||
|
@ -50,6 +50,9 @@ function addArticleToPresets(layerConfig: {presets?: {title: any}[]}){
|
|||
if(txt.startsWith(article+" ")){
|
||||
return txt;
|
||||
}
|
||||
if(txt.startsWith("an ")){
|
||||
return txt;
|
||||
}
|
||||
return article +" " + txt.toLowerCase();
|
||||
})
|
||||
.translations
|
||||
|
|
Loading…
Reference in a new issue