@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.
Files changed (2) hide show
  1. package/.eslintrc.js +12 -2
  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': 1,
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
- module.exports = {
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@socprime/master-configuration",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "author": "Pavel Nedzelskiy <pavlo.nedzelskyi@socprime.com>",
5
5
  "license": "ISC",
6
6
  "scripts": {