Initial Upload

This commit is contained in:
Matt Batchelder
2025-12-02 10:32:59 -05:00
commit 05ce0da296
2240 changed files with 467811 additions and 0 deletions

42
eslint.config.mjs Normal file
View File

@@ -0,0 +1,42 @@
import globals from 'globals';
import path from 'node:path';
import {fileURLToPath} from 'node:url';
import js from '@eslint/js';
import {FlatCompat} from '@eslint/eslintrc';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
});
export default [...compat.extends('google'), {
languageOptions: {
globals: {
...globals.browser,
},
ecmaVersion: 'latest',
sourceType: 'module',
},
settings: {},
rules: {
indent: ['error', 2, {
SwitchCase: 1,
}],
'quote-props': ['warn', 'as-needed'],
'dot-location': ['warn', 'property'],
'linebreak-style': [0, 'error', 'windows'],
'valid-jsdoc': 'off',
'require-jsdoc': 'off',
'new-cap': 'off',
'no-const-assign': 'error',
},
}, {
files: ['**/*.js'],
rules: {},
}];