Skip to content
Snippets Groups Projects
Unverified Commit 1b4c4319 authored by Julian Dominguez-Schatz's avatar Julian Dominguez-Schatz Committed by GitHub
Browse files

Disable typography linter in tests (#3114)

* Disable typography linter in tests

* Add release notes

* Remove unused type ignore
parent 14f29941
No related branches found
No related tags found
No related merge requests found
/* eslint-disable rulesdir/typography */
const path = require('path');
const rulesDirPlugin = require('eslint-plugin-rulesdir');
......@@ -332,6 +331,18 @@ module.exports = {
'react-hooks/exhaustive-deps': 'off',
},
},
{
files: [
'.eslintrc.js',
'*.test.js',
'*.test.ts',
'*.test.jsx',
'*.test.tsx',
],
rules: {
'rulesdir/typography': 'off',
},
},
],
settings: {
'import/resolver': {
......
......@@ -30,7 +30,6 @@ const schemaConfig = {
v_transactions2: (_, publicFields) => {
const fields = publicFields({
// eslint-disable-next-line rulesdir/typography
transfer_id: 'COERCE(transfer_id, "foo")',
});
......
---
category: Maintenance
authors: [jfdoming]
---
Disable typography linter in tests
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment