* Introduce configurable photo sort order * Fix recents image pre-rendering * Refine sort order config * Store sort order in client state * Add core views to support sort * Separate sort and priority preferences * Consolidate imports, add lint rule * Refine photo sorting documentation * Update README sort text * Finalize sort config
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
import { dirname } from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
import { FlatCompat } from '@eslint/eslintrc';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = dirname(__filename);
|
|
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
});
|
|
|
|
const eslintConfig = [
|
|
...compat.extends('next/core-web-vitals', 'next/typescript'), {
|
|
rules: {
|
|
'@next/next/no-img-element': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-require-imports': 'off',
|
|
'no-unused-expressions': ['warn'],
|
|
'no-duplicate-imports': ['warn'],
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn', {
|
|
'argsIgnorePattern': '^_',
|
|
'varsIgnorePattern': '^_',
|
|
},
|
|
],
|
|
'comma-dangle': [
|
|
'warn',
|
|
'always-multiline',
|
|
],
|
|
'indent': [
|
|
'warn',
|
|
2,
|
|
],
|
|
'linebreak-style': [
|
|
'warn',
|
|
'unix',
|
|
],
|
|
'quotes': [
|
|
'warn',
|
|
'single',
|
|
],
|
|
'semi': [
|
|
'warn',
|
|
'always',
|
|
],
|
|
'max-len': [
|
|
'warn',
|
|
{ 'code': 80 },
|
|
],
|
|
},
|
|
}];
|
|
|
|
export default eslintConfig;
|