solana-token-list
Version:
Homebrew Solana Token Registry with Coingecko data
34 lines (33 loc) • 1.12 kB
JavaScript
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: { project: './tsconfig.json' },
env: { es6: true },
ignorePatterns: ['node_modules', 'build', 'coverage'],
plugins: ['import', 'eslint-comments'],
extends: [
'eslint:recommended',
'plugin:eslint-comments/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/typescript',
'prettier',
'prettier/@typescript-eslint',
],
globals: { BigInt: true, console: true, WebAssembly: true },
rules: {
'@typescript-eslint/explicit-module-boundary-types': 'off',
'eslint-comments/disable-enable-pair': ['error', { allowWholeFile: true }],
'eslint-comments/no-unused-disable': 'error',
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-explicit-any': 'off',
// 'import/order': [
// 'error',
// { 'newlines-between': 'always', alphabetize: { order: 'asc' } },
// ],
// 'sort-imports': [
// 'error',
// { ignoreDeclarationSort: true, ignoreCase: true },
// ],
},
};