mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
21 lines
374 B
JavaScript
21 lines
374 B
JavaScript
/* eslint-env node */
|
|
|
|
module.exports = {
|
|
plugins: [ 'metafizzy' ],
|
|
extends: 'plugin:metafizzy/browser',
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
},
|
|
globals: {
|
|
Flickity: 'readonly',
|
|
QUnit: 'readonly',
|
|
},
|
|
rules: {
|
|
'prefer-object-spread': 'error',
|
|
},
|
|
ignorePatterns: [ 'bower_components' ],
|
|
};
|