add instructions to run tests, and fix linting (for WebStorm)

This commit is contained in:
2024-07-19 14:35:48 -06:00
parent 27501f0898
commit 47274a9e7c
3 changed files with 22 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
requireConfigFile: false,
},
plugins: [],
rules: {
quotes: [
'error',
'single',
{ avoidEscape: true, allowTemplateLiterals: true },
],
},
};