Skip to content

Commit

Permalink
chore: use JS ESLintRC file (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey authored Aug 20, 2023
1 parent 8dd7c31 commit ce151e2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
17 changes: 17 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/** @type {import('eslint').Linter.Config} */
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
mocha: true,
},
extends: ['standard'],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
rules: {
'space-before-function-paren': ['error', 'never'],
},
}
11 changes: 0 additions & 11 deletions .eslintrc.yml

This file was deleted.

0 comments on commit ce151e2

Please sign in to comment.