UNPKG

398 BJavaScriptView Raw
1/* eslint-env node */
2
3module.exports = {
4 plugins: [ 'metafizzy' ],
5 extends: 'plugin:metafizzy/browser',
6 env: {
7 browser: true,
8 commonjs: true,
9 },
10 parserOptions: {
11 ecmaVersion: 5,
12 },
13 globals: {
14 Flickity: 'readonly',
15 QUnit: 'readonly',
16 define: 'readonly',
17 },
18 rules: {
19 'no-var': 'off',
20 strict: 'off',
21 },
22 ignorePatterns: [ 'bower_components' ],
23};