Fix more build errors

This commit is contained in:
Darren Clarke 2023-03-15 12:17:43 +00:00
parent 1bdc1e60db
commit 30ce47826f
61 changed files with 1161 additions and 541 deletions

View file

@ -29,6 +29,7 @@ module.exports = {
"no-use-extend-native/no-use-extend-native": "error",
// this one breaks libraries like Ramda and lodash
"unicorn/no-array-callback-reference": "off",
"unicorn/filename-case": "off",
"unicorn/better-regex": [
"error",
{

View file

@ -16,13 +16,8 @@ module.exports = {
},
],
"no-extra-semi": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-extra-semi": "error",
"@typescript-eslint/ban-ts-comment": [
"error",
{
"ts-nocheck": "allow-with-description",
"ts-expect-error": "allow-with-description",
},
],
},
};