add eslint and format scripts

This commit is contained in:
2024-11-04 19:25:19 -06:00
parent ca2848f92a
commit 4f846ccbd6
3 changed files with 3464 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
module.exports = {
env: {
node: true,
commonjs: true,
es2021: true,
},
extends: ['airbnb', 'prettier'],
parserOptions: {
ecmaVersion: 'latest',
},
ignorePatterns: ['**/node_modules', '**/dist'],
};