mirror of
https://github.com/ptarmiganlabs/butler-sos.git
synced 2025-12-19 17:58:18 -05:00
38 lines
899 B
JavaScript
38 lines
899 B
JavaScript
import prettier from 'eslint-plugin-prettier';
|
|
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("airbnb-base", "prettier"), {
|
|
export default [
|
|
...compat.extends('prettier'),
|
|
{
|
|
plugins: {
|
|
prettier,
|
|
},
|
|
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node,
|
|
},
|
|
|
|
ecmaVersion: 12,
|
|
sourceType: 'module',
|
|
},
|
|
|
|
rules: {
|
|
'prettier/prettier': 'error',
|
|
},
|
|
},
|
|
];
|