mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
Upgraded no-restricted-require in shared rule to error
- We should not require server or frontend files inside the shared libraries as these are intended to be required FROM the server and frontend components - Now that we've resolved the two outstanding warnings, make this an error so we can't regress on this easily
This commit is contained in:
parent
3b366dc55d
commit
576f1438ee
@ -31,7 +31,7 @@ module.exports = {
|
||||
{
|
||||
files: 'core/shared/**',
|
||||
rules: {
|
||||
'ghost/node/no-restricted-require': ['warn', [
|
||||
'ghost/node/no-restricted-require': ['error', [
|
||||
{
|
||||
name: path.resolve(__dirname, 'core/server/**'),
|
||||
message: 'Invalid require of core/server from core/shared.'
|
||||
|
Loading…
Reference in New Issue
Block a user