Skip to content

Commit 117e0e7

Browse files
committed
Linting
1 parent f301d04 commit 117e0e7

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

docs-app/.eslintrc.cjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,11 @@ module.exports = {
1818
plugins: ['ember'],
1919
parser: 'ember-eslint-parser',
2020
},
21+
{
22+
files: ['**/*.{cjs,js}'],
23+
rules: {
24+
'n/no-unsupported-features': 'off',
25+
},
26+
},
2127
],
2228
};

ui/.eslintrc.cjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,11 @@ module.exports = {
2525
'@typescript-eslint/no-explicit-any': 'off',
2626
},
2727
},
28+
{
29+
files: ['**/*.cjs'],
30+
rules: {
31+
'n/no-unsupported-features': 'off',
32+
},
33+
},
2834
],
2935
};

0 commit comments

Comments
 (0)