1234567891011121314151617 |
- const base = require('@polkadot/dev-react/config/eslint');
- module.exports = {
- ...base,
- parserOptions: {
- ...base.parserOptions,
- project: [
- './tsconfig.json'
- ]
- },
- rules: {
- ...base.rules,
- '@typescript-eslint/no-explicit-any': 'off',
- '@typescript-eslint/camelcase': 'off',
- }
- };
|