Migrate to yarn

This commit is contained in:
2022-07-07 00:51:28 +03:00
parent 1af1048670
commit 78fd1b5adf
32 changed files with 10289 additions and 20356 deletions

15
gather/.eslintrc.js Normal file
View File

@@ -0,0 +1,15 @@
export default {
parser: '@typescript-eslint/parser',
extends: 'standard-with-typescript',
parserOptions: {
project: './tsconfig.json'
},
rules: {
'@typescript-eslint/no-floating-promises': [
'error',
{
ignoreIIFE: true
}
]
}
}