Skip to content

Commit

Permalink
ENH Loosen rules
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Jan 10, 2023
1 parent d7e7529 commit 16d2b39
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ module.exports = {
'import/no-extraneous-dependencies': [
'off'
],
'import/no-unresolved': [
'off'
],
// turned off because the PHP side returns dangling properties which trigger this...
// could revise later and add exceptions for PHP data
'no-underscore-dangle': [
Expand Down Expand Up @@ -83,7 +86,7 @@ module.exports = {
'off'
],
'react/prefer-stateless-function': [
'error',
'off',
{ 'ignorePureComponents': true }
],
'import/prefer-default-export': [
Expand Down Expand Up @@ -113,6 +116,18 @@ module.exports = {
'no-prototype-builtins': [
'off'
],
'react/destructuring-assignment': [
'off'
],
'prefer-destructuring': [
'off'
],
'react/jsx-props-no-spreading': [
'off'
],
'default-param-last': [
'off'
]
}),
'overrides': [
{
Expand Down

0 comments on commit 16d2b39

Please sign in to comment.