mirror of
https://github.com/selfxyz/self.git
synced 2026-01-08 06:14:07 -05:00
* fix yarn format * yarn format * fix lint * undo temporary disabling * pipeline fixes * revert nvmrc change
104 lines
2.9 KiB
JavaScript
104 lines
2.9 KiB
JavaScript
// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
|
|
|
|
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
ecmaVersion: 2021,
|
|
sourceType: 'module',
|
|
ecmaFeatures: { jsx: false },
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:import/recommended',
|
|
'plugin:import/typescript',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
plugins: ['simple-import-sort', 'import', 'sort-exports'],
|
|
ignorePatterns: ['dist/', 'node_modules/'],
|
|
settings: {
|
|
'import/resolver': {
|
|
typescript: {
|
|
alwaysTryTypes: true,
|
|
project: './tsconfig.json',
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
node: {
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
},
|
|
'import/ignore': ['react-native'],
|
|
},
|
|
rules: {
|
|
'import/order': 'off',
|
|
'no-duplicate-imports': 'off',
|
|
'simple-import-sort/imports': [
|
|
'error',
|
|
{
|
|
groups: [
|
|
// Node.js built-ins
|
|
['^node:'],
|
|
['^node:.*/'],
|
|
// External packages
|
|
['^[a-zA-Z]'],
|
|
// Internal workspace packages
|
|
['^@selfxyz/'],
|
|
|
|
// Relative imports
|
|
['^[./]'],
|
|
],
|
|
},
|
|
],
|
|
// Export sorting - using sort-exports for better type prioritization
|
|
'sort-exports/sort-exports': ['error', { sortDir: 'asc', ignoreCase: false, sortExportKindFirst: 'type' }],
|
|
|
|
'import/first': 'error',
|
|
'import/newline-after-import': 'error',
|
|
'import/no-duplicates': 'error',
|
|
'import/export': 'off',
|
|
'import/no-unresolved': ['error', { caseSensitive: true }],
|
|
'import/namespace': 'error',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-require-imports': 'error',
|
|
'@typescript-eslint/no-empty-object-type': 'error',
|
|
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
|
|
// Add prettier rule to show prettier errors as ESLint errors
|
|
'prettier/prettier': ['warn', {}, { usePrettierrc: true }],
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['*.cjs'],
|
|
env: {
|
|
node: true,
|
|
commonjs: true,
|
|
es6: true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
sourceType: 'script',
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'no-undef': 'off',
|
|
},
|
|
},
|
|
{
|
|
// Disable export sorting for type definition files to preserve logical grouping
|
|
files: ['src/types/**/*.ts'],
|
|
rules: {
|
|
'sort-exports/sort-exports': 'off',
|
|
},
|
|
},
|
|
{
|
|
// Allow require imports only in the NFC decoder shim that conditionally imports node:util
|
|
files: ['src/processing/nfc.ts'],
|
|
rules: {
|
|
'@typescript-eslint/no-require-imports': 'off',
|
|
},
|
|
},
|
|
],
|
|
};
|