|
| 1 | +import globals from "globals"; |
| 2 | +import path from "node:path"; |
| 3 | +import {fileURLToPath} from "node:url"; |
| 4 | +import js from "@eslint/js"; |
| 5 | +import {FlatCompat} from "@eslint/eslintrc"; |
| 6 | + |
| 7 | +const __filename = fileURLToPath(import.meta.url); |
| 8 | +const __dirname = path.dirname(__filename); |
| 9 | +const compat = new FlatCompat({ |
| 10 | + baseDirectory: __dirname, |
| 11 | + recommendedConfig: js.configs.recommended, |
| 12 | + allConfig: js.configs.all |
| 13 | +}); |
| 14 | + |
| 15 | +export default [{ |
| 16 | + ignores: ["**/site/"], |
| 17 | +}, ...compat.extends("eslint:recommended", "google"), { |
| 18 | + plugins: {}, |
| 19 | + |
| 20 | + languageOptions: { |
| 21 | + globals: { |
| 22 | + ...globals.node, |
| 23 | + }, |
| 24 | + |
| 25 | + ecmaVersion: 2023, |
| 26 | + sourceType: "module", |
| 27 | + }, |
| 28 | + |
| 29 | + rules: { |
| 30 | + "indent": ["error", "tab"], |
| 31 | + "linebreak-style": ["error", "unix"], |
| 32 | + |
| 33 | + "quotes": ["error", "double", { |
| 34 | + allowTemplateLiterals: true, |
| 35 | + }], |
| 36 | + |
| 37 | + "semi": ["error", "always"], |
| 38 | + "no-negated-condition": "off", |
| 39 | + "require-jsdoc": "off", |
| 40 | + "no-mixed-requires": "off", |
| 41 | + |
| 42 | + "max-len": ["error", { |
| 43 | + code: 120, |
| 44 | + ignoreUrls: true, |
| 45 | + ignoreRegExpLiterals: true, |
| 46 | + }], |
| 47 | + |
| 48 | + "no-implicit-coercion": [2, { |
| 49 | + allow: ["!!"], |
| 50 | + }], |
| 51 | + |
| 52 | + "comma-dangle": "off", |
| 53 | + "no-tabs": "off", |
| 54 | + "no-console": "off", // scripts use console.log to print out |
| 55 | + "valid-jsdoc": 0, |
| 56 | + }, |
| 57 | +}]; |
0 commit comments