This commit is contained in:
Elizabeth Craig 2022-09-08 17:14:23 -07:00
Родитель 2dafd6dbf0
Коммит 87fc94e183
3 изменённых файлов: 14 добавлений и 9 удалений

Просмотреть файл

@ -9,14 +9,6 @@
"rules": {
"indent": "off",
"no-unused-vars": "off",
"quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"prefer-rest-params": "off",
"no-useless-escape": "off",
"require-atomic-updates": "off",

Просмотреть файл

@ -4,4 +4,12 @@ module.exports = {
singleQuote: true,
trailingComma: 'all',
arrowParens: 'avoid',
overrides: [
{
files: '*.json5',
options: {
parser: 'json',
},
},
],
};

Просмотреть файл

@ -6,5 +6,10 @@
"github>microsoft/m365-renovate-config:keepFresh"
],
"labels": ["renovate"]
"labels": ["renovate"],
"packageRules": [
// For @types/node we're intentionally staying on 12 (could probably go to 14)
{ "matchPackageNames": ["@types/node"], "allowedVersions": "<13.0.0" }
]
}