@socprime/master-configuration 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +12 -2
- package/package.json +1 -1
package/.eslintrc.js
CHANGED
|
@@ -55,7 +55,7 @@ const json = [
|
|
|
55
55
|
files: ['tsconfig.json', 'package.json'],
|
|
56
56
|
rules: {
|
|
57
57
|
'jsonc/sort-keys': 0,
|
|
58
|
-
'jsonc/key-name-casing':
|
|
58
|
+
'jsonc/key-name-casing': 0,
|
|
59
59
|
},
|
|
60
60
|
},
|
|
61
61
|
];
|
|
@@ -117,7 +117,7 @@ const typescript = [
|
|
|
117
117
|
},
|
|
118
118
|
];
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
const base = {
|
|
121
121
|
root: true,
|
|
122
122
|
env: {
|
|
123
123
|
browser: true,
|
|
@@ -139,6 +139,16 @@ module.exports = {
|
|
|
139
139
|
'storybook-static',
|
|
140
140
|
'tmp',
|
|
141
141
|
],
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
module.exports = {
|
|
145
|
+
...base,
|
|
146
|
+
[Symbol('base')]: base,
|
|
147
|
+
[Symbol('js')]: js,
|
|
148
|
+
[Symbol('typescript')]: typescript,
|
|
149
|
+
[Symbol('json')]: json,
|
|
150
|
+
[Symbol('extendAirBnBRules')]: extendAirBnBRules,
|
|
151
|
+
[Symbol('javascriptRules')]: javascriptRules,
|
|
142
152
|
overrides: [
|
|
143
153
|
...js,
|
|
144
154
|
...typescript,
|