@niondigital/eslint-config-base 1.8.0 → 1.8.1
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/index.js +5 -1
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -110,7 +110,11 @@ module.exports = {
|
|
|
110
110
|
|
|
111
111
|
// use of semicolons
|
|
112
112
|
semi: 'off',
|
|
113
|
-
'@typescript-eslint/semi': ['error']
|
|
113
|
+
'@typescript-eslint/semi': ['error'],
|
|
114
|
+
|
|
115
|
+
// this usage in classes
|
|
116
|
+
'class-methods-use-this': 'off',
|
|
117
|
+
'@typescript-eslint/class-methods-use-this': 'error'
|
|
114
118
|
},
|
|
115
119
|
overrides: [
|
|
116
120
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@niondigital/eslint-config-base",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "niondigital base eslint config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"engines": {
|
|
65
65
|
"node": ">=18.0.0"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "1d36af03148509e90ba8d7acaa1a923cc7c05200"
|
|
68
68
|
}
|