UNPKG

269 BJavaScriptView Raw
1const builtin = [
2 './lib/legacy',
3 './lib/rules/es6',
4 './lib/rules/es2020',
5].map(require.resolve);
6
7module.exports = {
8 extends: builtin.concat([
9 'plugin:eggache/recommended',
10 ]),
11 parserOptions: {
12 ecmaVersion: 2020,
13 sourceType: 'script',
14 },
15};