11 lines
261 B
JavaScript
11 lines
261 B
JavaScript
module.exports = {
|
|
plugins: ['ghost'],
|
|
extends: [
|
|
'plugin:ghost/node'
|
|
],
|
|
rules: {
|
|
// Enforce kebab-case (lowercase with hyphens) for all filenames
|
|
'ghost/filenames/match-regex': ['error', '^[a-z0-9.-]+$', false]
|
|
}
|
|
};
|