Commit c6ed7016e1aeae70e9f7043079783aa7acd87d80

Authored by adi surya
1 parent 17358f37bc
Exists in master

indent 4

Showing 1 changed file with 14 additions and 13 deletions Inline Diff

1 module.exports = { 1 module.exports = {
2 env: { 2 env: {
3 commonjs: true, 3 commonjs: true,
4 es2021: true, 4 es2021: true,
5 node: true, 5 node: true,
6 }, 6 },
7 extends: [ 7 extends: [
8 'airbnb-base', 8 'airbnb-base',
9 ], 9 ],
10 parserOptions: { 10 parserOptions: {
11 ecmaVersion: 'latest', 11 ecmaVersion: 'latest',
12 }, 12 },
13 rules: { 13 rules: {
14 }, 14 indent: ['error', 4],
15 },
15 }; 16 };
16 17