mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-08 20:19:06 +03:00
40 lines
973 B
JavaScript
40 lines
973 B
JavaScript
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('eslint:recommended'), {
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.webextensions,
|
|
chrome: 'readonly',
|
|
},
|
|
|
|
ecmaVersion: 12,
|
|
sourceType: 'module',
|
|
},
|
|
|
|
rules: {
|
|
semi: ['error', 'always'],
|
|
quotes: ['error', 'single'],
|
|
},
|
|
}, {
|
|
files: ['scripts/**/*.js'],
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node,
|
|
},
|
|
ecmaVersion: 12,
|
|
sourceType: 'module',
|
|
},
|
|
}]; |