Skip to content

Commit

Permalink
Fixing ESLint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCarini committed Jul 29, 2024
1 parent 132cb98 commit f03abe7
Show file tree
Hide file tree
Showing 4 changed files with 622 additions and 3,623 deletions.
14 changes: 13 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
module.exports = require('@betahuhn/config').eslint
const eslintConfig = require('@betahuhn/config').eslint;

eslintConfig.parserOptions = {
...eslintConfig.parserOptions,
ecmaVersion: "latest",
}
eslintConfig.rules = {
...eslintConfig.rules,
'comma-dangle': 0,
'brace-style': 0,
}

module.exports = eslintConfig
Loading

0 comments on commit f03abe7

Please sign in to comment.