123456789101112131415161718192021222324252627282930 |
- import globals from "globals";
- import eslintConfigPrettier from "eslint-plugin-prettier/recommended";
- export default [
- {
- ignores: ["build/**/*"],
- },
- {
- files: ["lib/**/*.js"],
- languageOptions: {
- sourceType: "module",
- globals: {
- ...globals.browser,
- gobalThis: "readonly",
- },
- },
- },
- {
- files: ["test/**/*.js"],
- languageOptions: {
- globals: {
- ...globals.browser,
- ...globals.mocha,
- ...globals.chai,
- ...globals.nodeBuiltin,
- },
- },
- },
- eslintConfigPrettier,
- ];
|