add linting remove unimplemented tests

This commit is contained in:
2023-09-07 16:02:28 -05:00
parent 45a889f035
commit f987a1d914
26 changed files with 3147 additions and 1060 deletions
+18
View File
@@ -0,0 +1,18 @@
module.exports = {
env: {
node: true,
commonjs: true,
es2021: true,
},
extends: ['airbnb', 'prettier'],
parserOptions: {
ecmaVersion: 'latest',
},
rules: {
'prefer-destructuring': 'off',
'no-bitwise': 'off',
'class-methods-use-this': 'off',
'import/extensions': 'off',
'import/no-relative-packages': 'off',
},
};