lix-website/themes/lix/assets/bootstrap/node_modules/eslint-config-xo/browser.js

18 lines
312 B
JavaScript
Raw Normal View History

2024-04-27 03:39:10 +00:00
'use strict';
const path = require('path');
const confusingBrowserGlobals = require('confusing-browser-globals');
module.exports = {
extends: path.join(__dirname, 'index.js'),
env: {
node: false,
browser: true
},
rules: {
'no-restricted-globals': [
'error',
...confusingBrowserGlobals
]
}
};