Skip to content

Commit eaeb563

Browse files
committed
add ignore css properties for eslint
1 parent 20f119f commit eaeb563

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ module.exports = {
3131
'max-len': 1,
3232
'import/extensions': 0,
3333
'import/no-extraneous-dependencies': 0,
34+
'react/no-unknown-property': ['error', { ignore: ['css'] }],
3435
'react/react-in-jsx-scope': 0,
3536
'react/function-component-definition': 0,
3637
'react/jsx-filename-extension': [
@@ -42,7 +43,6 @@ module.exports = {
4243
'react/prop-types': 0,
4344
'react-hooks/exhaustive-deps': 0,
4445
'react/jsx-props-no-spreading': 0,
45-
'react/no-unknown-property': 1,
4646
'jsx-a11y/anchor-is-valid': 0,
4747
'jsx-a11y/label-has-associated-control': 1,
4848
'jsx-a11y/no-noninteractive-element-interactions': 0,

electron-builder.json5

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@
6161
arch: 'x64',
6262
},
6363
],
64-
}
64+
},
6565
}

0 commit comments

Comments
 (0)