Bug 1773452 - Disable ESlint warnings about use of osfile for osfile files. r=barret

Differential Revision: https://phabricator.services.mozilla.com/D148754
This commit is contained in:
Mark Banner 2022-06-09 21:05:38 +00:00
Родитель b0cd658b0c
Коммит 73fcd6408d
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -561,5 +561,12 @@ module.exports = {
"devtools/**",
],
},
{
// Turn off the osfile rule for osfile.
files: ["toolkit/components/osfile/**"],
rules: {
"mozilla/reject-osfile": "off",
},
},
],
};