ship-gis/node_modules/object.getownpropertydescriptors/eslint.config.mjs
2026-01-22 09:14:01 +09:00

31 lines
423 B
JavaScript

import ljharb from '@ljharb/eslint-config/flat';
export default [
...ljharb,
{
rules: {
'id-length': [
'error',
{ max: 30, min: 1 },
],
'new-cap': [
'error',
{
capIsNewExceptions: [
'CreateDataProperty',
'IsCallable',
'RequireObjectCoercible',
'ToObject',
],
},
],
},
},
{
files: ['test/**'],
rules: {
'no-invalid-this': 'warn',
},
},
];