Commit c6ed7016e1aeae70e9f7043079783aa7acd87d80
1 parent
17358f37bc
Exists in
master
indent 4
Showing 1 changed file with 14 additions and 13 deletions Side-by-side Diff
.eslintrc.js
1 | 1 | module.exports = { |
2 | - env: { | |
3 | - commonjs: true, | |
4 | - es2021: true, | |
5 | - node: true, | |
6 | - }, | |
7 | - extends: [ | |
8 | - 'airbnb-base', | |
9 | - ], | |
10 | - parserOptions: { | |
11 | - ecmaVersion: 'latest', | |
12 | - }, | |
13 | - rules: { | |
14 | - }, | |
2 | + env: { | |
3 | + commonjs: true, | |
4 | + es2021: true, | |
5 | + node: true, | |
6 | + }, | |
7 | + extends: [ | |
8 | + 'airbnb-base', | |
9 | + ], | |
10 | + parserOptions: { | |
11 | + ecmaVersion: 'latest', | |
12 | + }, | |
13 | + rules: { | |
14 | + indent: ['error', 4], | |
15 | + }, | |
15 | 16 | }; |