chore: misc eslint

This commit is contained in:
Elliot DeNolf
2023-10-06 17:16:13 -04:00
parent e55ec6329c
commit 3fce97a6d2
3 changed files with 3 additions and 1 deletions

View File

@@ -20,7 +20,7 @@
"lint-staged": "lint-staged",
"pretest": "pnpm build",
"reinstall": "./scripts/reinstall.sh",
"release:list:beta": "./scripts/list_published_packages.sh beta",
"list:packages": "./scripts/list_published_packages.sh beta",
"script:release:beta": "./scripts/release_beta.sh",
"test": "pnpm test:int && pnpm test:components && pnpm test:e2e",
"test:components": "cross-env jest --config=jest.components.config.js",

View File

@@ -26,6 +26,7 @@ module.exports = {
'@typescript-eslint/no-use-before-define': 'off',
// turn the @typescript-eslint/unbound-method rule off *only* for test files. See https://typescript-eslint.io/rules/unbound-method/#when-not-to-use-it
'@typescript-eslint/unbound-method': 'off',
'no-console': 'off',
'perfectionist/sort-objects': 'off',
},
},

View File

@@ -84,4 +84,5 @@ const startDev = async () => {
})
}
// eslint-disable-next-line @typescript-eslint/no-floating-promises
startDev()