You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
802 B
26 lines
802 B
module.exports = {
|
|
extends: ['alloy', 'alloy/typescript'],
|
|
rules: {},
|
|
env: {
|
|
es6: true,
|
|
node: true,
|
|
jest: true
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['*.ts', '*.js'],
|
|
rules: {
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'@typescript-eslint/prefer-optional-chain': 'off',
|
|
'@typescript-eslint/no-require-imports': 'off',
|
|
'max-params': 'off',
|
|
'no-param-reassign': 'off',
|
|
'@typescript-eslint/no-this-alias': 'off',
|
|
'@typescript-eslint/no-duplicate-imports': 'off',
|
|
'@typescript-eslint/no-loss-of-precision': 'off',
|
|
'@typescript-eslint/method-signature-style': 'off'
|
|
}
|
|
}
|
|
]
|
|
}
|