[go: up one dir, main page]

Skip to content

Commit

Permalink
fix(browser): finders in browser png were not displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
gugu committed Oct 1, 2024
1 parent 7ba0217 commit 77231fb
Show file tree
Hide file tree
Showing 4 changed files with 138 additions and 237 deletions.
35 changes: 18 additions & 17 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
module.exports = {
env: {
browser: true,
commonjs: true,
es2020: true,
node: true,
import importPlugin from 'eslint-plugin-import';
import js from '@eslint/js';

export default [
js.configs.recommended,
importPlugin.flatConfigs.recommended,
{
files: ['**/*.{js,mjs,cjs}'],
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
rules: {
'no-unused-vars': 'off',
'import/no-dynamic-require': 'warn',
'import/no-nodejs-modules': 'warn',
},
},
extends: [
'airbnb-base',
],
parserOptions: {
ecmaVersion: 11,
},
rules: {
'no-restricted-syntax': 0,
'no-continue': 0,
},
};
];
Loading

0 comments on commit 77231fb

Please sign in to comment.