Files
stacks-transaction-sponsor/.eslintrc.js
bestmike007 488461ff29 feat: stacks sponsor transaction
Signed-off-by: bestmike007 <i@bestmike007.com>
2023-11-21 23:33:28 -06:00

31 lines
791 B
JavaScript

module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ['prettier', '@typescript-eslint'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
'prettier/prettier': 'error',
'@typescript-eslint/ban-ts-comment': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/naming-convention': [
'error',
{ selector: 'class', format: ['PascalCase'] },
{ selector: 'interface', format: ['PascalCase'] },
],
},
ignorePatterns: [
'!.dependency-cruiser.js',
'packages/*/dist/**',
'node_modules/**',
'.yarn/**',
],
env: {
node: true,
},
};