1 | "use strict";
|
2 |
|
3 | module.exports = {
|
4 | "extends": [
|
5 | "defaults/rules/eslint/best-practices/walmart",
|
6 | "defaults/rules/eslint/errors/walmart",
|
7 | "defaults/rules/eslint/es6/off",
|
8 | "defaults/rules/eslint/node/off",
|
9 | "defaults/rules/eslint/strict/walmart",
|
10 | "defaults/rules/eslint/style/walmart",
|
11 | "defaults/rules/eslint/variables/walmart",
|
12 | "defaults/rules/filenames/walmart"
|
13 | ],
|
14 | "env": {},
|
15 | "ecmaFeatures": {},
|
16 | "globals": {
|
17 | "require": false,
|
18 | "module": false,
|
19 | "process": false
|
20 | },
|
21 | "rules": {}
|
22 | };
|