Files
mygit/apps/admin-x-framework/test/.eslintrc.cjs
T
DuckQ1u 93d1b7c3d3
Copilot Setup Steps / copilot-setup-steps (push) Has been cancelled
first commit
2026-04-22 19:51:20 +07:00

13 lines
363 B
JavaScript

module.exports = {
plugins: ['ghost'],
extends: [
'plugin:ghost/ts-test'
],
rules: {
'ghost/mocha/no-mocha-arrows': 'off',
'@typescript-eslint/no-explicit-any': 'off',
// Enforce kebab-case (lowercase with hyphens) for all filenames
'ghost/filenames/match-regex': ['error', '^[a-z0-9.-]+$', false]
}
};