Skip to content

Commit

Permalink
Merge pull request #134 from pcraig3/fix-open-api-param
Browse files Browse the repository at this point in the history
Fix Open API schema param
  • Loading branch information
pcraig3 committed May 9, 2024
2 parents 6dd8da0 + be1d1ab commit eabac96
Show file tree
Hide file tree
Showing 11 changed files with 943 additions and 7,172 deletions.
21 changes: 0 additions & 21 deletions .eslintrc.json

This file was deleted.

22 changes: 22 additions & 0 deletions eslint.config.js
@@ -0,0 +1,22 @@
const globals = require('globals')

module.exports = {
languageOptions: {
ecmaVersion: 2022,
sourceType: 'module',
globals: { ...globals.node },
},
plugins: {
jest: {
globals: true,
},
},
rules: {
indent: ['error', 2, { SwitchCase: 1, ignoredNodes: ['TemplateLiteral *'] }],
'linebreak-style': 'off', // Changed from 0 to 'off' to use string values
quotes: ['error', 'single'],
'comma-dangle': ['error', 'always-multiline'],
semi: ['error', 'never'],
'no-console': 'error',
},
}

0 comments on commit eabac96

Please sign in to comment.