mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +03:00
13 lines
213 B
JavaScript
13 lines
213 B
JavaScript
|
module.exports = {
|
||
|
plugins: ['ghost'],
|
||
|
extends: [
|
||
|
'plugin:ghost/browser',
|
||
|
],
|
||
|
parserOptions: {
|
||
|
sourceType: 'module',
|
||
|
ecmaFeatures: {
|
||
|
jsx: true
|
||
|
}
|
||
|
}
|
||
|
};
|