@will-stone/eslint-config 0.0.3 → 0.0.5
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/CHANGELOG.md +13 -0
- package/eslint-config.js +4 -1
- package/package.json +1 -1
- package/rules/built-in.js +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @will-stone/eslint-config
|
|
2
2
|
|
|
3
|
+
## 0.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4f97233: Fixed requiring use-strict in files that don't need it.
|
|
8
|
+
|
|
9
|
+
## 0.0.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Fixed no browser globals available. Puting these in all files for now, but
|
|
14
|
+
maybe should be based on something else?
|
|
15
|
+
|
|
3
16
|
## 0.0.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/eslint-config.js
CHANGED
package/package.json
CHANGED
package/rules/built-in.js
CHANGED
|
@@ -642,9 +642,8 @@ export default {
|
|
|
642
642
|
// All comments must have a space after the //
|
|
643
643
|
// This also allows /// reference comments
|
|
644
644
|
'spaced-comment': ['warn', 'always', { markers: ['/'] }],
|
|
645
|
-
//
|
|
646
|
-
|
|
647
|
-
'strict': 'warn',
|
|
645
|
+
// Generally gets in the way as it's difficult to know when this may be required.
|
|
646
|
+
'strict': 'off',
|
|
648
647
|
// Using description promotes easier debugging.
|
|
649
648
|
// ✅ var foo = Symbol("some description")
|
|
650
649
|
'symbol-description': 'error',
|