first commit

This commit is contained in:
Tim Bendt
2024-04-19 14:08:59 -06:00
commit cf50f37ede
11 changed files with 6722 additions and 0 deletions

13
eslint.config.js Normal file
View File

@@ -0,0 +1,13 @@
const { sheriff } = require('eslint-config-sheriff');
const { defineFlatConfig } = require('eslint-define-config');
const sheriffOptions = {
"react": false,
"lodash": false,
"next": false,
"playwright": false,
"jest": false,
"vitest": false
};
module.exports = defineFlatConfig([...sheriff(sheriffOptions)]);