Urara-Blog/node_modules/.pnpm-store/v3/files/d6/73432d94fe3e734175316dbfed231d3df9b7657b048952d1900adc3a48287591770a48d808a2195c75a108ad87df88baa09a73645133628c5423c96c1a1949
2022-08-14 01:14:53 +08:00

32 lines
No EOL
1.1 KiB
Text

"use strict";
module.exports = {
overrides: [
{
files: ['*.ts', '*.tsx', '*.mts', '*.cts'],
rules: {
'constructor-super': 'off',
'getter-return': 'off',
'no-const-assign': 'off',
'no-dupe-args': 'off',
'no-dupe-class-members': 'off',
'no-dupe-keys': 'off',
'no-func-assign': 'off',
'no-import-assign': 'off',
'no-new-symbol': 'off',
'no-obj-calls': 'off',
'no-redeclare': 'off',
'no-setter-return': 'off',
'no-this-before-super': 'off',
'no-undef': 'off',
'no-unreachable': 'off',
'no-unsafe-negation': 'off',
'no-var': 'error',
'prefer-const': 'error',
'prefer-rest-params': 'error',
'prefer-spread': 'error',
'valid-typeof': 'off', // ts(2367)
},
},
],
};
//# sourceMappingURL=eslint-recommended.js.map