Skip to content

Commit

Permalink
Merge pull request #7 from moscajs/test-use-aedes-tests
Browse files Browse the repository at this point in the history
test: transfer aedes tests to the project
  • Loading branch information
getlarge authored Oct 9, 2023
2 parents 71f2855 + 5d83cf2 commit 9d0e67c
Show file tree
Hide file tree
Showing 24 changed files with 21,807 additions and 6,338 deletions.
26 changes: 23 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,28 @@

/** @type {import("eslint").Linter.Config} */
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: ['eslint:recommended'],
root: true,
overrides: [
{
files: ['*.ts'],
extends: ['plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
rules: {},
},
{
files: ['*.js'],
parserOptions: {
ecmaVersion: 'latest',
},
env: {
es6: true,
node: true,
},
rules: {
"no-unused-vars": "off",
},
},
],
}
Loading

0 comments on commit 9d0e67c

Please sign in to comment.