Files
warframe-center/gather/.eslintrc.js
2022-07-07 00:51:28 +03:00

16 lines
278 B
JavaScript

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