Skip to content

Commit e50b46d

Browse files
Fix configs (#46)
1 parent f740bfb commit e50b46d

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

angular.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,6 @@ module.exports = {
5656
'@typescript-eslint/no-unused-expressions': 0,
5757
'@typescript-eslint/no-useless-constructor': 0,
5858
'@typescript-eslint/explicit-module-boundary-types': 0, // was warn
59+
'@typescript-eslint/no-extraneous-class': 0,
5960
},
6061
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-devextreme",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "ESLint Configurations for the DevExtreme Source Code",
55
"repository": {
66
"type": "git",

react.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ module.exports = {
6969
'no-trailing-spaces': 'error',
7070
'no-new-func': 'error',
7171
'no-eval': 'error',
72-
'no-undef': 'error',
7372
'no-unused-expressions': 'off',
7473
'no-unused-vars': ['error'],
7574
'no-extend-native': 'error',

typescript.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
'message': 'Use the getWindow method instead.'
2020
}
2121
],
22+
'no-undef': 'off',
2223
'@typescript-eslint/adjacent-overload-signatures': 'error',
2324
'@typescript-eslint/array-type': 'error',
2425
'@typescript-eslint/await-thenable': 'error',

vue.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ module.exports = {
6767
'no-trailing-spaces': 'error',
6868
'no-new-func': 'error',
6969
'no-eval': 'error',
70-
'no-undef': 'error',
7170
'no-unused-expressions': 'off',
7271
'no-unused-vars': ['error'],
7372
'no-extend-native': 'error',

0 commit comments

Comments
 (0)